零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> Object-C 基础
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> Object-C 线程
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> OpenGL ES
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> GPUImage
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> AVFoundation
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> CocoaPods
一.NSString 转 bool
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:iOS NSURL URLWithString 与 fileURLWithPath 区别
//@Time:2021/09/11 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
NSString *str1 = @"YES";
NSString *str2 = @"NO";
//ok
NSLog(@"str1 = %d str2 = %d",[str1 boolValue],[str2 boolValue]);
//error
NSLog(@"str1 = %d str2 = %d",[str1 intValue],[str2 intValue]);
/*
str1 = 1 str2 = 0
str1 = 0 str2 = 0
*/
注意:NSString 转 bool 请使用 boolValue,并非 intValue ;
二.bool 转 NSString
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:iOS NSURL URLWithString 与 fileURLWithPath 区别
//@Time:2021/09/11 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
BOOL a = YES;
BOOL b = NO;
NSString* str = [NSString stringWithFormat:@"a is %d and b is %d", a, b];
NSLog(@"str = %@", str);
/*
str = a is 1 and b is 0
*/
三.猜你喜欢
- Xcode – The application’s Info.plist does not contain CFBundleShortVersionString.
- Xcode – This app has attempted to access privacy-sensitive data without a usage description.
- Xcode – Embedded binary’s bundle identifier is not prefixed with the parent app’s bundle identifier
- Xcode – Your maximum App ID limit has been reached. You may create up to 10 App IDs every 7 days
- Xcode replace 使用正则表达式替换文字
- Object-C 获取系统字体和字体名字
- Object-C 加载 TTF/OTF/TTC 文件
- Object-C private var mobileDevice文件夹
- Object-C 保存文件到相册
- Object-C 加载 TTF/OTF/TTC 文件
- Object-C 保存文件到相册
- iOS NSString 字符串的排序
- iOS NSString 创建和初始化
- iOS UIImage 与 RGBA 相互转换
- iOS NSString 查找指定字符串出现的次数
- iOS NSString 查找指定字符串位置
- iOS NSString 拆分字符串
- iOS NSString 截取字符串
- iOS NSString 和 NSArray 相互转换
- iOS NSString 包含字符串/匹配字符串
- iOS NSURL URLWithString 与 fileURLWithPath 区别
- iOS NSString 和 bool 相互转换
ChatGPT 3.5 国内中文镜像站免费使用啦
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容