导航栏:
一级页面跳转时或者二级页面返回一级页面时,会影响双方导航栏的颜色,就是会使导航栏渐变的效果,解决问题就是把导航栏的改变写在返回事件中。
按钮图片上面文字和图片居中:
btn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;//使图片和文字水平居中显示
[btn setTitleEdgeInsets:UIEdgeInsetsMake(1.3*btn.imageView.frame.size.height ,-btn.imageView.frame.size.width, 0.0,0.0)];//文字距离上边框的距离增加imageView的高度,距离左边框减少imageView的宽度,距离下边框和右边框距离不变
[btn setImageEdgeInsets:UIEdgeInsetsMake(-1.3*(totalHeight - btn.imageView.frame.size.height), 0.0,0.0, -btn.titleLabel.bounds.size.width)];//图片距离右边框距离减少文字的宽度,其它不边
网友评论