- (void)applicationDidEnterBackground:(UIApplication *)application {
if (<#condition#>) {
<#statements#>
}
for (<#type *object#> in <#collection#>) {
<#statements#>
}
while (<#condition#>) {
<#statements#>
}
do {
<#statements#>
} while (<#condition#>);
switch (<#expression#>) {
case <#constant#>:
<#statements#>
break;
default:
break;
}
typedef NS_ENUM(NSInteger, UIButtonType) {
UIButtonTypeCustom = 0,
UIButtonTypeSystem NS_ENUM_AVAILABLE_IOS(7_0),
UIButtonTypeDetailDisclosure,
UIButtonTypeInfoLight,
UIButtonTypeInfoDark,
UIButtonTypeContactAdd,
UIButtonTypeRoundedRect = UIButtonTypeSystem,
};
struct CLLocationCoordinate2D {
CLLocationDegrees latitude;
CLLocationDegrees longitude;
};
}
格式2
最新推荐文章于 2023-01-06 02:48:17 发布
