做iOS开发时间也不短了,在这里分享一些心得,持续更新。
欢迎加入iOS开发交流群一起学习,群号:264663035
一、更整洁的代码
1.利用GCC语法优化你的控件初始化代码,关于什么事GCC语法,自行百度之。将初始化方法放在括号内,便于阅读。
UIButton*myButton = ({
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame=CGRectMake(0.f,0.f,100.f,40.f);
[buttonsetTitle:@"我的按钮"forState:UIControlStateNormal];
[buttonsetTitleColor:[UIColor redColor] forState:UIControlStateNormal];
button.titleLabel.font= [UIFontsystemFontOfSize:12.f];
[self.viewaddSubview:myButton];
button;
});
2.单个控件初始化可以使用上面的GCC使代码整洁,开发中还经常碰到需要初始化两个大部分相似,却又稍有不痛的按钮,我们可以利用Block来进行优化。
UIButton*(^createButtonBlock)(NSString*,CGRect) = ^UIButton*(NSString*title,CGRectframe){
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame= frame;
[buttonsetTitle:title forState:UIControlStateNormal];
[buttonsetTitleColor:[UIColor redColor] forState:UIControlStateNormal];
button.titleLabel.font= [UIFontsystemFontOfSize:12.f];
[self.viewaddSubview:button];
returnbutton;
};
UIButton*leftButton = createButtonBlock(@"左边按钮",CGRectMake(0.f,0.f,100.f,40.f));
UIButton*righeButton = createButtonBlock(@"右边按钮",CGRectMake(100.f,0.f,100.f,40.f));
二、根据需求修改原生控件
1.修改UIbutton中title和image的位置。 原生的UIButton同时设置title和image的时候,title和image会紧挨着水平排列。
这个时候万恶的产品就会要求,image在上title在下,垂直居中并且间距为5。或者image和title靠的太近了,要求水平间距为10。
修改UIbutton的titleEdgeInsets和imageEdgeInsets,可以满足各种需求。
新建一个UIbutton的Category,方便在各个地方调用调整title、image位置的方法。
//使image和title垂直居中,并保持特定间距
- (void)verticalImageAndTitle:(CGFloat)space
{
CGSize imageSize = self.imageView.frame.size;
CGSize titleSize = self.titleLabel.frame.size;
CGSize textSize = [self.titleLabel.text sizeWithFont:self.titleLabel.font];
CGSizeframeSize =CGSizeMake(ceilf(textSize.width),ceilf(textSize.height));
CGFloat totalHeight = (imageSize.height+ titleSize.height+ space);
self.imageEdgeInsets=UIEdgeInsetsMake(- (totalHeight - imageSize.height),0.f,0.f, - titleSize.width);
self.titleEdgeInsets=UIEdgeInsetsMake(0.f, - imageSize.width, - (totalHeight - titleSize.height),0.f);
}
[button verticalImageAndTitle:10.f];
- (void)leftImageRightTitltWithSpace:(CGFloat)space
{
self.imageEdgeInsets=UIEdgeInsetsMake(0.f, -space/2,0.f, space/2);
self.titleEdgeInsets=UIEdgeInsetsMake(0.f, space/2,0.f, -space/2);
}
[button leftImageRightTitltWithSpace:10.f];
2.自定义UITextField中各个内容的位置,UITextField的头文件中有几个方法。
// drawing and positioning overrides
- (CGRect)borderRectForBounds:(CGRect)bounds;
- (CGRect)textRectForBounds:(CGRect)bounds;
- (CGRect)placeholderRectForBounds:(CGRect)bounds;
- (CGRect)editingRectForBounds:(CGRect)bounds;
- (CGRect)clearButtonRectForBounds:(CGRect)bounds;
- (CGRect)leftViewRectForBounds:(CGRect)bounds;
- (CGRect)rightViewRectForBounds:(CGRect)bounds;
相信大家看方法名大概也能猜出各个方法的用处,现在为大家演示一下 - (CGRect)textRectForBounds:(CGRect)bounds 的用法。
首先使用原生UITextField,我们来看一下效果。
图中灰色区域是UITextField,白色为输入的内容,可以看到文字紧贴着TextField的右边界,而美工妹子给的效果图中文字与TextField的右边界大都有一些间距。现在我们通过重写 -(CGRect)textRectForBounds:(CGRect)bounds 方法来为它加一个间距。
新建一个类,继承自UITextField,并定义一个textLeftSpace属性
//.h文件
@interface KRTextField : UITextField
@property (nonatomic, assign) CGFloat textLeftSpace;
@end
//.m文件
-(CGRect)textRectForBounds:(CGRect)bounds
{
CGRect rect = [super textRectForBounds:bounds];
CGRect newRect = CGRectMake(rect.origin.x + self.textLeftSpace, rect.origin.y, rect.size.width - self.textLeftSpace , rect.size.height);
return newRect;
}
在ViewController里添加如下代码
KRTextField*textField = [[KRTextField alloc] initWithFrame:CGRectMake(50.f,100.f,150.f,40.f)];
textField.backgroundColor = [UIColor grayColor];
textField.textColor = [UIColor whiteColor];
textField.textLeftSpace = 5.f;
textField.text = @"Text";
[self.view addSubview:textField];
TextField的文字与右边界有了我们设置的5个单位的间距。这里为大家演示了 -(CGRect)textRectForBounds:(CGRect)bounds 的用法,其他的大家自己去尝试。
3.修改UISearchBar的placeholder文字的颜色和字体
UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(40.f, 100, 300.f, 50.f)];
searchBar.placeholder = @"我是占位符";
UITextField * searchField = [searchBar valueForKey:@"_searchField"];
[searchField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
[searchField setValue:[UIFont systemFontOfSize:14.f] forKeyPath:@"_placeholderLabel.font"];
网友评论