上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 打印结果 2016-12-22 17:56:14.546 text[31326:1735436] ( 1, 2, 6, 8, 9) 阅读全文
posted @ 2017-02-04 10:48 Leo-Wmw 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 2 3 { 4 NSSet *allTouch = [event allTouches]; 5 UITouch *touch = [allTouch anyObject]; 6 CGPoint point = [touch... 阅读全文
posted @ 2017-02-04 10:44 Leo-Wmw 阅读(1837) 评论(0) 推荐(0) 编辑
摘要: iOS 按钮倒计时功能, 建议把按钮换成label,这样会避免读秒时闪烁 阅读全文
posted @ 2016-12-09 11:01 Leo-Wmw 阅读(865) 评论(0) 推荐(0) 编辑
摘要: 获取app版本URL 数字是appID,在开发者账号app信息中可以找到 检测商店的版本 比较方法 阅读全文
posted @ 2016-12-06 15:04 Leo-Wmw 阅读(186) 评论(0) 推荐(0) 编辑
摘要: http://www.jianshu.com/p/9b788285b982 阅读全文
posted @ 2016-11-28 13:50 Leo-Wmw 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 NSString *strHTML = @""; 2 // NSString *strHTML = model.goods_datails; 3 NSMutableString *targerStr = [[NSMutableString alloc] initWithString:strHTML]; 4 // 5 // 搜索制定字符 在指定位置插入字... 阅读全文
posted @ 2016-11-24 09:58 Leo-Wmw 阅读(2369) 评论(0) 推荐(0) 编辑
摘要: 1 NSString *tmpStr = @"asd341234aaaaccd"; 2 3 NSRange range; 4 5 range = [tmpStr rangeOfString:@"ccd"]; 6 7 if (range.location != NSNotFound) { 8 9 NSLog(@"found at loc... 阅读全文
posted @ 2016-11-23 17:50 Leo-Wmw 阅读(16967) 评论(0) 推荐(0) 编辑
摘要: 出现场景: 正常调试是没有问题的,但是在Archive的时候,报出了这个错误。 问题详情: (null): URGENT: all bitcode will be dropped because ‘xxxx’ was built without bitcode. You must rebuild i 阅读全文
posted @ 2016-11-09 10:37 Leo-Wmw 阅读(247) 评论(0) 推荐(0) 编辑
摘要: //一个section刷新 NSIndexSet *indexSetA = [[NSIndexSet alloc]initWithIndex:3]; //刷新第3段 [tableview reloadSections:indexSetA withRowAnimation:UITableViewRow 阅读全文
posted @ 2016-11-03 10:24 Leo-Wmw 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 支付宝官网:店家我的商家服务—在页面的下方找到——>签约管理—>找打 移动支付—–>点击下载集成文档—>跳到新的页面,在页面下方—>找到下载开发包,下载移动支付即可。然后解压出来之后一般会得到三个文件夹。 这个时候要打开文件名为: 支付宝钱包支付接口开发包2.0标准版的文件。打开之后有一个Demo  阅读全文
posted @ 2016-11-02 13:38 Leo-Wmw 阅读(20093) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页