xcode格式

来源:互联网 发布:软件开发入门 编辑:程序博客网 时间:2024/06/05 03:56
if (<#condition#>) {        <#statements#>    }        switch (<#expression#>) {        case <#constant#>:            <#statements#>            break;                    default:            break;    }- (void)applicationDidEnterBackground:(UIApplication *)application {    }    while (<#condition#>) {        <#statements#>    }- (void)applicationDidEnterBackground:(UIApplication *)application {    }typedef NS_ENUM(NSInteger, UIButtonType) {        UIButtonTypeCustom = 0,                         // no button type        UIButtonTypeSystem NS_ENUM_AVAILABLE_IOS(7_0),  // standard system button                UIButtonTypeDetailDisclosure,        UIButtonTypeInfoLight,        UIButtonTypeInfoDark,        UIButtonTypeContactAdd,                UIButtonTypeRoundedRect = UIButtonTypeSystem,   // Deprecated, use UIButtonTypeSystem instead    };@property(nullable, nonatomic,copy)   NSString           *text; 
0 0
原创粉丝点击