oc 为了简化一些写法,会有所谓的语法糖,让你事半功倍!
变量声明
NSString *str = @"123"; //字符串
NSArray *arr = @[@"123",@"123"];//数组
//访问数组
id a = arr[0]
//字典
NSDictionary *dictionary = @{
@"key0" : @"value0",
@"key1" : @"value1",
@"key2" : @"value2"
};
//访问字典
id a = dictionary[@"key0"]
//nsnumber
NSNumber *a = @123;
NSNumber *b = @11.2;
NSNumber *c = @('a');
注 id 为泛类型修饰符,表明此变量可能是任何类型
UI方面
//({ })
self.imageView = ({
UIImageView *imageView = [[UIImageView alloc] init];
imageView.backgroundColor = [UIColor redColor];
imageView.image = [UIImage imageNamed:@
"12345"];
imageView.frame = CGRectMake(0, 0, 100, 100);
[self.view addSubview:imageView];
imageView; //结尾必须要有此返回
});
注:1 强烈建议用这样的写法加入xcode 的snippet, 提高工作效率!
2 xcode 内<#描述文字#> 是IDE 专用占位符,方便你使用snippet时填入需要的内容.