我们平常写代码时会遇到提示代码的功能,会出现相应的代码块,这样方便了我们的,提高效率,使我们更便利
例如:首先写好你以后决定重用的代码
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
btn.backgroundColor = [UIColor whiteColor];
btn.frame = CGRectMake(10, 100, [UIScreen mainScreen].bounds.size.width - 20, 50);
[btn setTitle:@"点击" forState:UIControlStateNormal];
btn.titleLabel.font = [UIFont systemFontOfSize:14.0f];
[btn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
之后选中你的代码,向右下角的{}拖入,拖入。
修改title 我选中的这个地方是你以后用的时候会联想的 取名字简单易记一点最好
之后点击一下done就可以了。 注意:completion Scopes选All
代码块里面需要提示参数的时候 , 用<# 你想提示的参数 #>,比如<#CGFloat y#>, 这样就可以在你用的时候有提示了。
使用的时候直接敲你之前在Completion Shortcut命名的名字就可以。我的命名是createButton.选中之后回车。