码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
iOS --- UIColor中使用16进制选取颜色
iOS中的UIColor能够使用16进制来选取颜色. 预先定义例如以下: #define UIColorFromHex(s) [UIColor colorWithRed:(((s & 0xFF0000) >> 16))/255.0 green:(((s & 0xFF00) >> 8))/255.0 ...
分类:移动开发   时间:2017-07-19 14:08:34    阅读次数:144
猫猫学iOS 之微博项目实战(2)微博主框架-自己定义导航控制器NavigationController
猫猫分享。必须精品 原创文章,欢迎转载。转载请注明:翟乃玉的博客 地址:http://blog.csdn.net/u013357243?viewmode=contents 一:加入导航控制器 上一篇博客完毕了对底部的TabBar的设置,这一章我们完毕自己定义导航控制器(NYNavigationCon ...
分类:移动开发   时间:2017-07-14 23:02:07    阅读次数:291
ios-UI-汤姆猫德游戏实现
// // ViewController.m // UI-猜拳游戏 // // Created by jzq_mac on 15/7/15. // Copyright (c) 2015年 jzq_mac. All rights reserved. // #import "ViewController ...
分类:移动开发   时间:2017-07-10 10:20:54    阅读次数:237
iOS NavigationBar 导航栏自定义
1. 设置导航栏NavigationBar的背景颜色: a) setBarTintColor : 设置NagivationBar的颜色 也可以用 : [[UINavigationBar appearance] setBarTintColor:[UIColor yellowColor]]; (在UIN ...
分类:移动开发   时间:2017-07-08 15:40:40    阅读次数:227
ios7 UIBarButtonItem 默认蓝色
[self.navigationItem setLeftBarButtonItem:leftButton]; 这样设置在ios7上button默认是蓝色 解决方法: leftButton.tintColor = [UIColor whiteColor]; [self.navigationItem s ...
分类:移动开发   时间:2017-07-07 20:07:26    阅读次数:202
单例---视图间数据的传递:标签显示输入的内容【多个视图中】
RootViewController.m - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor greenColor]; //创建显示文字的label UILabel *label = [[UI ...
分类:其他好文   时间:2017-07-05 17:15:04    阅读次数:118
Swift学习的第一个demo,讲解了一些常用的知识点
/** 1. OC [UIView alloc] initWithXXX:] Swift UIView(XXX:) 类名() == alloc / init 等价 2. 类方法 OC [UIColor redColor] Swift UIColor.red 3. 访问当前对象的属性,可以不使用‘se ...
分类:编程语言   时间:2017-07-04 09:50:15    阅读次数:194
Objective-C UITextView的使用方法
//初始化并定义大小 UITextView *textview = [[UITextView alloc] initWithFrame:CGRectMake(20, 10, 280, 30)]; textview.backgroundColor=[UIColor whiteColor]; //背景色 ...
分类:其他好文   时间:2017-07-02 10:28:01    阅读次数:145
ios tableview的索引条将表视图往左边挤
感觉tableview的索引条将表视图往左边挤了一点?别担心,只是颜色问题。只要如此设置即可 //索引条背景的颜色(清空颜色就不会感觉索引条将tableview往左边挤) [_tableView setSectionIndexBackgroundColor:[UIColor clearColor]] ...
分类:移动开发   时间:2017-07-01 12:51:42    阅读次数:243
RunTime运行时在iOS中的应用之UITextField占位符placeholder
RunTime运行时机制 runtime是一套比较底层的纯C语言API, 属于1个C语言库, 包含了很多底层的C语言API。 在我们平时编写的OC代码中, 程序运行过程时, 其实最终都是转成了runtime的C语言代码, runtime算是OC的幕后工作者,下面介绍一下runtime的一个应用用于遍 ...
分类:移动开发   时间:2017-06-30 01:02:38    阅读次数:277
848条   上一页 1 ... 6 7 8 9 10 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!