if (someObject) {}
if (![anotherObject boolValue]) {}
NSInteger maney = 5;
serv = (maney != 0) ? x : y;
BOOL isHorizontal = YES;
serv = isHorizontal ? x : y;
//不应该
result = a > b ? x = c > d ? c : d : y;
if (someName == nil) {}
if ([anotherName boolValue] == NO) {}
if (topName == YES) {} // Never do this.
if (bomName == true) {} // Never do this.
//司马懿 20170508 添加时间显示
[self.view addSubview:timeLable];
//修改结束
//司马懿 20170508 删除时间显示
// [self.view addSubview:timeLable];
//修改结束
//司马懿 20170508 修改标题显示将“管理”修改为“分组”
self.title = @"分组";
//修改结束