UIView *v = [[UIView alloc]initWithFrame:CGRectMake(10, 400, 300, 200)]; // 初始化一个UIView ? ? [v setBackgroundColor:[UIColor redColor]]; // 设置背景颜色 ? ? [self.view addSubview:v]; ...
分类:
其他好文 时间:
2015-10-21 14:14:09
阅读次数:
103
//TabBar样式[navi.tabBarItem setTitleTextAttributes:@{NSFontAttributeName:[UIFont boldSystemFontOfSize:13],NSForegroundColorAttributeName:[UIColor color...
分类:
其他好文 时间:
2015-10-21 09:16:06
阅读次数:
142
设置这个view背景色:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.3];效果如下:
分类:
其他好文 时间:
2015-10-19 17:26:29
阅读次数:
108
//第一种UIColor*color=[UIColorwhiteColor]; userName.attributedPlaceholder=[[NSAttributedStringalloc]initWithString:@"用户名"attributes:@{NSForegroundColorAt...
分类:
其他好文 时间:
2015-10-15 12:31:13
阅读次数:
117
如果opaque设置为YES,那么视图会被当做全视图来对待,系统会重绘整个视图如果opaque设置为NO,那么系统会减少开销,以其中的内容来判定重绘的视图如果把视图的背景色设置为透明那个,那么opaque最好设置为NO,减少开销self.backgroundColor = [UIColor clea...
分类:
其他好文 时间:
2015-10-14 17:47:10
阅读次数:
148
在开发的过程中、我们往往会碰到图片很多的情况、这时候我们的程序打包就会变得很大、一些纯色的图片可以用RGB来实现、这样可以减少内存的占用MAC本中有数码测色计这个功能、通过这个我们可以获得图片的RGB、#import @interface UIColor (Pattern)+ (UIColor *)...
分类:
移动开发 时间:
2015-10-14 17:22:37
阅读次数:
215
1. 基本使用 UIView * view = [[UIView alloc]initWithFrame:CGRectMake(50, 50, 50,50)]; view.backgroundColor = [UIColor orangeColor]; [self.view addSubview.....
分类:
其他好文 时间:
2015-10-14 12:13:33
阅读次数:
217
(void)viewDidLoad { ????[super viewDidLoad]; ????? ????scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)]; ????scrollView.backgroundColor = [UIColor redCo...
分类:
其他好文 时间:
2015-10-13 12:28:59
阅读次数:
129
一.创建海报视图 :- (void)_createPosterView{// _posterView = [[UIView alloc] initWithFrame:self.view.bounds];// _posterView.backgroundColor = [UIColor o...
分类:
其他好文 时间:
2015-10-11 21:39:07
阅读次数:
331
1.设置NavigationBar的背景色: self.navigationController.navigationBar.barTintColor = [UIColor redColor];2.设置NavigationBar上的标题 self.navigationItem.title = @.....
分类:
其他好文 时间:
2015-10-11 21:16:44
阅读次数:
172