码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
UILabel的使用
常用属性UILabel//显示的文字@property(nonatomic,copy)NSString *text;//字体@property(nonatomic,retain)UIFont *font;//文字颜色@property(nonatomic,retain)UIColor*textCol...
分类:其他好文   时间:2015-12-18 21:23:52    阅读次数:188
UIScreen,UIFont,UIColor,UIView,UIButton等总结
6.1UIScreen//屏幕的宽度CGFloatscreenW = [UIScreenmainScreen].bounds.size.width;6.2UIFont+ (UIFont *)systemFontOfSize:(CGFloat)fontSize;系统默认字体+ (UIFont *)bo...
分类:其他好文   时间:2015-12-18 21:08:53    阅读次数:209
IOS 导航栏颜色 标题
修改导航栏颜1 #define COLOR_TOMATO [UIColor colorWithRed:255/255.0f green:99/255.0f blue:71/255.0f alpha:1.0f] /*!< 番茄色 */2 3 self.navigationController.navi...
分类:移动开发   时间:2015-12-16 23:08:00    阅读次数:272
PCH文件常用宏定义
//0-255的随机数#define randint arc4random() % 256//随机色#define randColor [UIColor colorWithRed:randint/255.0 green:randint/255.0 blue:randint/255.0 alpha:1...
分类:其他好文   时间:2015-12-15 22:27:42    阅读次数:159
iOS 十六进制的颜色值转换为UIColor
UIColor+Hex.h里面中#import @interface UIColor (Hex)+ (UIColor *) colorWithHexString: (NSString *)color;@endUIColor+Hex.m里面中#import "UIColor+Hex.h"@implem...
分类:移动开发   时间:2015-12-14 18:50:44    阅读次数:280
iOS颜色转换
各种颜色之间的转换,会陆续更新,HEX颜色转UIColor- (UIColor*)ConvertWith:(NSInteger)RGB Alpha:(CGFloat)a{ NSInteger r = (RGB & 0xFF0000) >> 16; NSInteger G = (RGB ...
分类:移动开发   时间:2015-12-14 14:33:24    阅读次数:159
iOS 设置UITextField的placeholder属性的颜色
NSDictionary *attrDict = @{NSForegroundColorAttributeName : [UIColor redColor]}; NSAttributedString *attrStr = [[NSAttributedString alloc] init...
分类:移动开发   时间:2015-12-09 19:34:10    阅读次数:140
[代码]label增加删除线
UILabel *lable = [[UILabel alloc] initWithFrame:CGRectMake(20, 60, 100, 30)];[self.view addSubview:lable];lable.backgroundColor = [UIColor redColor];l...
分类:其他好文   时间:2015-12-02 16:15:47    阅读次数:153
iOS-UI父视图下视图的操作
在窗口上创建三个视图:橘色的v1 UIView *v1 = [[UIView alloc]initWithFrame:CGRectMake(100, 200, 200, 200)]; v1.backgroundColor = [UIColor orangeColor]; [self.windo...
分类:移动开发   时间:2015-11-30 21:54:18    阅读次数:277
swift--如何设置子视图alpha不同于父视图
//1.2加入商家标题评分容器 let titleWarp=UIView(frame: CGRectMake(0, 150, screenObject.width, 50)); titleWarp.backgroundColor=UIColor.blackColor()....
分类:编程语言   时间:2015-11-27 17:02:59    阅读次数:169
848条   上一页 1 ... 32 33 34 35 36 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!