排序
Xcode – This app has attempted to access privacy-sensitive data without a usage description.
Xcode - This app has attempted to access privacy-sensitive data without a usage description.
iOS NSString 包含字符串/匹配字符串
iOS NSString包含字符串,iOS NSString匹配字符串,NSString包含字符串,NSString匹配字符串,NSString substringWithRange,NSString rangeOfString,
Object-C 加载 TTF/OTF/TTC 文件
Object-C 加载 TTF/OTF/TTC 文件 - /* *函数描述:加载字体并返回 * *参数: * fontName : 字体名字,并非字体文件 * fontSize : 字体大小 * *返回值:加载成功,返回字体,加载失败,返回nil...
iOS NSString 替换字符串
iOS NSString 替换字符串 - (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target withString:(NSString *)replacement options:(NSStringCompareOptions)options range:(NSRa...
iOS NSURL URLWithString 与 fileURLWithPath 区别
iOS NSURL URLWithString 与 fileURLWithPath 区别 - URLWithString 与 fileURLWithPath 的区别在于前者用于网络,后者用于本地 NSURL *appURL = [NSURLURLWithString:urlString]; //网络url NS...
Xcode – Xcode13 The Legacy Build System will be removed in a future release
Xcode – Xcode13 The Legacy Build System will be removed in a future release - The Legacy Build System will be removed in a future release. You can configure the selected build sys...
Object-C 保存文件到相册
Object-C 保存文件到相册 1.UIImageWriteToSavedPhotosAlbum 2.AssetsLibrary 3.PHPhotoLibrary Xcode – This app has attempted to access privacy-sensitive data without a usage descripti...
iOS NSString 和 bool 相互转换
iOS NSString 和 bool 相互转换 NSString *str1 = @'YES'; NSString *str2 = @'NO'; //ok NSLog(@'str1 = %d str2 = %d',[str1 boolValue],[str2 boolValue]); BOOL a = YES; BOOL b = NO; NSSt...