上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 38 下一页

2018年1月17日

iOS点击空白处或点击背景收起键盘

摘要: - (void)viewDidLoad{ [super viewDidLoad]; //添加手势 UITapGestureRecognizer *tap1 = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(viewTapped:)]; tap1.cancelsTouchesInView = NO; ... 阅读全文

posted @ 2018-01-17 17:08 高彰 阅读(1672) 评论(0) 推荐(0)

iOS11 tableView下拉刷新问题

摘要: - (void)viewDidLoad { [super viewDidLoad]; 。。。。放这里!!! } 阅读全文

posted @ 2018-01-17 15:59 高彰 阅读(744) 评论(0) 推荐(1)

2018年1月16日

iOS Slider使用

摘要: @property (nonatomic,strong)UISlider *VolSlider; _VolSlider=[[UISlider alloc]initWithFrame:CGRectMake(fDeviceWidth/4,fDeviceHeight*3/4-64,fDeviceWidth/2,30)]; _VolSlider.minimumValue=0.0; ... 阅读全文

posted @ 2018-01-16 10:56 高彰 阅读(1196) 评论(0) 推荐(0)

2018年1月4日

2018~2023常用网站 图片处理 API接口

摘要: 在线PS:https://www.photopea.com/ 图片处理: http://icon.wuruihong.com/icon/iZduKVew#/ios 图标工厂 ios图标:https://appicon.co/#app-icon ios启动图:https://www.onlinedo. 阅读全文

posted @ 2018-01-04 18:10 高彰 阅读(276) 评论(0) 推荐(0)

2017年12月29日

iOS判断当前时间是否处于某个时间段内

摘要: 援引:http://www.cnblogs.com/wb145230/p/5266627.html 阅读全文

posted @ 2017-12-29 13:53 高彰 阅读(1625) 评论(0) 推荐(0)

2017年12月28日

iOS 页面跳转和返回,持续编写

摘要: 如果使用导航 第一个按钮方法: [self.navigationController pushViewController:secondVC animated:YES]; 第二个按钮方法: [self.navigationController popViewControllerAnimated:YE 阅读全文

posted @ 2017-12-28 14:48 高彰 阅读(900) 评论(0) 推荐(0)

2017年12月27日

tableview属性

摘要: UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID]; if(cell==nil){ cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellSty 阅读全文

posted @ 2017-12-27 10:43 高彰 阅读(189) 评论(0) 推荐(0)

iOS导航栏背景,标题和返回按钮文字颜色

摘要: 援引:https://www.cnblogs.com/sunfuyou/p/6477539.html 在iOS7下,默认导航栏背景,颜色是这样的,接下来我们就进行自定义,如果你仅仅是更改一下背景和颜色,代码会很简单,不需要很复杂的自定义View来替代leftBarItem 更改导航栏的背景和文字Co 阅读全文

posted @ 2017-12-27 10:31 高彰 阅读(540) 评论(0) 推荐(0)

2017年12月26日

iOS tabbar图标保持原图不被渲染

摘要: 阅读全文

posted @ 2017-12-26 15:33 高彰 阅读(1259) 评论(0) 推荐(1)

2017年12月23日

iOS 判断字符串中含有某个字符串 rangeOfString

摘要: //判断roadTitleLab.text 是否含有qingjoin if([roadTitleLab.text rangeOfString:@"qingjoin"].location !=NSNotFound)//_roaldSearchText { NSLog(@"yes"); } else { 阅读全文

posted @ 2017-12-23 16:08 高彰 阅读(35961) 评论(0) 推荐(0)

上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 38 下一页

导航