iOS 控件小技巧

  • ios ttableView Cell右侧的箭头,圆形等
cell.accessoryType = UITableViewCellAccessoryNone;//cell没有任何的样式

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;//cell的右边有一个小箭头,距离右边有十几像素;

cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;//cell右边有一个蓝色的圆形button;

cell.accessoryType = UITableViewCellAccessoryCheckmark;//cell右边的形状是对号;
  • Debug 和Release 宏定义
#ifdef DEBUG
    NSLog(@"debug facebook");
    // 测试
    [FBSDKSettings enableLoggingBehavior:FBSDKLoggingBehaviorAppEvents];
#else
    NSLog(@"product facebook");
#endif

你可能感兴趣的:(iOS 控件小技巧)