码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
动态增加UIView到当前视图中
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标题的文字格式
//TabBar样式[navi.tabBarItem setTitleTextAttributes:@{NSFontAttributeName:[UIFont boldSystemFontOfSize:13],NSForegroundColorAttributeName:[UIColor color...
分类:其他好文   时间:2015-10-21 09:16:06    阅读次数:142
一种透明效果的view
设置这个view背景色:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.3];效果如下:
分类:其他好文   时间:2015-10-19 17:26:29    阅读次数:108
修改UITextfield的Placeholder字体的颜色
//第一种UIColor*color=[UIColorwhiteColor]; userName.attributedPlaceholder=[[NSAttributedStringalloc]initWithString:@"用户名"attributes:@{NSForegroundColorAt...
分类:其他好文   时间:2015-10-15 12:31:13    阅读次数:117
alpha,hidden,opaque的一些认识
如果opaque设置为YES,那么视图会被当做全视图来对待,系统会重绘整个视图如果opaque设置为NO,那么系统会减少开销,以其中的内容来判定重绘的视图如果把视图的背景色设置为透明那个,那么opaque最好设置为NO,减少开销self.backgroundColor = [UIColor clea...
分类:其他好文   时间:2015-10-14 17:47:10    阅读次数:148
IOS中如果使用RGB实现背景色
在开发的过程中、我们往往会碰到图片很多的情况、这时候我们的程序打包就会变得很大、一些纯色的图片可以用RGB来实现、这样可以减少内存的占用MAC本中有数码测色计这个功能、通过这个我们可以获得图片的RGB、#import @interface UIColor (Pattern)+ (UIColor *)...
分类:移动开发   时间:2015-10-14 17:22:37    阅读次数:215
CABasicAnimation 使用
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
scrollView的代理方法
(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
NavigationController的使用整理
1.设置NavigationBar的背景色: self.navigationController.navigationBar.barTintColor = [UIColor redColor];2.设置NavigationBar上的标题 self.navigationItem.title = @.....
分类:其他好文   时间:2015-10-11 21:16:44    阅读次数:172
848条   上一页 1 ... 36 37 38 39 40 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!