iOS开发——语法OC篇&BOOL / bool / Boolean / NSCFBoolean四者区别

Posted iOS0116

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发——语法OC篇&BOOL / bool / Boolean / NSCFBoolean四者区别相关的知识,希望对你有一定的参考价值。

NameTypedefHeaderTrue ValueFalse Value
BOOL signed char objc.h YES NO
bool _Bool (int) stdbool.h true false
Boolean unsigned char MacTypes.h TRUE FALSE
NSNumber __NSCFBoolean Foundation.h @(YES) @(NO)
CFBooleanRef struct CoreFoundation.h kCFBooleanTrue

以上是关于iOS开发——语法OC篇&BOOL / bool / Boolean / NSCFBoolean四者区别的主要内容,如果未能解决你的问题,请参考以下文章

iOS开发-OC篇-NSDate

iOS开发-OC篇-NSSet,NSNumber

iOS开发-OC语言 点语法和@property

iOS开发-OC篇-KVC详解

iOS开发网络篇 —— OC加载HTML代码

iOS开发-OC篇-单例模式