上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页

2018年2月6日

iOS tableview下拉刷新

摘要: - (void)viewDidLoad { [super viewDidLoad]; // 创建tableview [self setTableView]; [self setupRefresh]; } // 下拉刷新 - (void)setupRefresh { NSLog(@"setupRefresh -- 下拉刷新"); ... 阅读全文

posted @ 2018-02-06 16:08 高彰 阅读(1680) 评论(0) 推荐(0) 编辑

iOS 设置按钮圆切角(4个角都可随意设置)

摘要: https://yq.aliyun.com/ziliao/4779 设置按钮的4个角:左上:UIRectCornerTopLeft左下:UIRectCornerBottomLeft右上:UIRectCornerTopRight右下:UIRectCornerBottomRight 例子代码: UIBu 阅读全文

posted @ 2018-02-06 11:30 高彰 阅读(6086) 评论(0) 推荐(0) 编辑

2018年2月5日

iOS 自定义弹框

摘要: https://www.jianshu.com/p/b9bba621b295 阅读全文

posted @ 2018-02-05 17:58 高彰 阅读(160) 评论(0) 推荐(0) 编辑

2018年1月31日

字符串或者int转十六进制

摘要: //开始传输config文件 -(void)Qlife_sendConfigStart:(NSString *)fileData{ //读取文件 NSError *error = nil; NSString *str = [NSString stringWithContentsOfFile:fileData encoding:NSUTF8StringEncoding er... 阅读全文

posted @ 2018-01-31 15:19 高彰 阅读(2831) 评论(0) 推荐(0) 编辑

2018年1月24日

拖动tableView时收起键盘

摘要: _tableview = [[UITableView alloc]initWithFrame:CGRectMake(0, 94,fDeviceWidth,fDeviceHeight-108) style:UITableViewStylePlain]; _tableview.delegate =self;//写了这两句话哟调用delegate*/ _tableview.dataS... 阅读全文

posted @ 2018-01-24 16:09 高彰 阅读(284) 评论(0) 推荐(0) 编辑

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 高彰 阅读(1660) 评论(0) 推荐(0) 编辑

iOS11 tableView下拉刷新问题

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

posted @ 2018-01-17 15:59 高彰 阅读(732) 评论(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 高彰 阅读(1185) 评论(0) 推荐(0) 编辑

2018年1月4日

2018~2023常用网站 图片处理

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

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

2017年12月29日

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

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

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

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页

导航