foundation系列

1如何将布尔值转为OC对象?

 1把 BOOL 值包装到 NSNumber中:

   NSNumber *boolNumber = [NSNumber numberWithBool:YES]

 2获取BOOL值:

   BOOL b = [boolNumber boolValue];

posted @ 2016-12-10 23:00  行者烧炉子  阅读(110)  评论(0)    收藏  举报