上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 37 下一页

2019年10月15日

NSMutableArray和NSArray的相互转换

摘要: // NSArray --> NSMutableArray NSMutableArray *myMutableArray = [myArray mutableCopy]; // NSMutableArray --> NSArray NSArray *myArray = [myMutableArray copy]; 阅读全文

posted @ 2019-10-15 13:45 高彰 阅读(337) 评论(0) 推荐(0) 编辑

2019年10月14日

ios打印超长字符串

摘要: //超越打印限制 #define NSLog(format,...) printf("%s",[[NSString stringWithFormat:(format), ##__VA_ARGS__] UTF8String]) 阅读全文

posted @ 2019-10-14 09:44 高彰 阅读(648) 评论(0) 推荐(0) 编辑

2019年9月3日

iOS 纯代码跳转到Xib界面和Storyboard界面

摘要: 纯代码跳转到Xib界面或者Storyboard界面,不能按照一般的跳转写法来跳转,会出现空白界面。 跳转到Storyboard界面 阅读全文

posted @ 2019-09-03 13:57 高彰 阅读(1517) 评论(0) 推荐(0) 编辑

iOS 获取当前app的 App Store 版本号

摘要: NSString * strurl = [[NSString alloc] initWithFormat:@"http://itunes.apple.com/lookup?id=%@",AppIDs];//替换为自己App的ID NSURLSession *session=[NSURLSession sharedSession]; NSURL *url = [NS... 阅读全文

posted @ 2019-09-03 09:59 高彰 阅读(2736) 评论(0) 推荐(0) 编辑

2019年8月27日

iOS 延时方法,定时器。等待一段时间在执行

摘要: 鸣谢:https://www.cnblogs.com/wuotto/p/9354305.html 概述 项目开发中经常会用到方法的延时调用,下面列举常用的几种实现方式: 1.performSelector 2.NSTimer 3.NSThread线程的sleep 4.GCD 1.performSel 阅读全文

posted @ 2019-08-27 16:42 高彰 阅读(1291) 评论(0) 推荐(0) 编辑

iOS获取当前app的名称和版本号及其他信息(持续维护)

摘要: // 1. iOS 获取到的 APP 的信息// iOS获取当前app的名称和版本号 NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];//获取app版本信息 NSLog(@"%@",infoDictionar 阅读全文

posted @ 2019-08-27 16:36 高彰 阅读(3060) 评论(0) 推荐(0) 编辑

iOS 截取字符串(持续更新)截取、匹配、分隔

摘要: 截取: NSString *str1 = @"this is zero"; 1.从第三个字符开始,截取长度为2的字符串.........注:空格算作一个字符 NSString *str2 = [str1 substringWithRange:NSMakeRange(5,2)];//str2 = "i 阅读全文

posted @ 2019-08-27 16:32 高彰 阅读(5314) 评论(0) 推荐(0) 编辑

iOS 屏幕大小尺寸,分辨率,代码获取屏幕大小(持续维护添加)

摘要: 名称 屏幕分辨率 代码获取屏幕大小iphone X 2436 x 1125 {375 ,812} iphone XR 1792 x 828 {414 ,896} iphone XS 2436 x 1125 {375 ,812} iphone XS Max 2688 x 1242 {414 ,896} 阅读全文

posted @ 2019-08-27 16:28 高彰 阅读(716) 评论(0) 推荐(0) 编辑

2019年8月10日

iOS NSString只保留字符串中的数字

摘要: 鸣谢:https://www.cnblogs.com/lulushen/p/9884873.html 阅读全文

posted @ 2019-08-10 15:04 高彰 阅读(1485) 评论(0) 推荐(1) 编辑

2019年8月1日

iOS NSlog打印数据不完全,xcode处理办法

摘要: 在项目中的.pch文件中添加可全局使用。 阅读全文

posted @ 2019-08-01 11:49 高彰 阅读(616) 评论(0) 推荐(0) 编辑

上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 37 下一页

导航