常用属性UILabel//显示的文字@property(nonatomic,copy)NSString *text;//字体@property(nonatomic,retain)UIFont *font;//文字颜色@property(nonatomic,retain)UIColor*textCol...
分类:
其他好文 时间:
2015-12-18 21:23:52
阅读次数:
188
6.1UIScreen//屏幕的宽度CGFloatscreenW = [UIScreenmainScreen].bounds.size.width;6.2UIFont+ (UIFont *)systemFontOfSize:(CGFloat)fontSize;系统默认字体+ (UIFont *)bo...
分类:
其他好文 时间:
2015-12-18 21:08:53
阅读次数:
209
修改导航栏颜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
//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
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
各种颜色之间的转换,会陆续更新,HEX颜色转UIColor- (UIColor*)ConvertWith:(NSInteger)RGB Alpha:(CGFloat)a{ NSInteger r = (RGB & 0xFF0000) >> 16; NSInteger G = (RGB ...
分类:
移动开发 时间:
2015-12-14 14:33:24
阅读次数:
159
NSDictionary *attrDict = @{NSForegroundColorAttributeName : [UIColor redColor]}; NSAttributedString *attrStr = [[NSAttributedString alloc] init...
分类:
移动开发 时间:
2015-12-09 19:34:10
阅读次数:
140
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
在窗口上创建三个视图:橘色的v1 UIView *v1 = [[UIView alloc]initWithFrame:CGRectMake(100, 200, 200, 200)]; v1.backgroundColor = [UIColor orangeColor]; [self.windo...
分类:
移动开发 时间:
2015-11-30 21:54:18
阅读次数:
277
//1.2加入商家标题评分容器 let titleWarp=UIView(frame: CGRectMake(0, 150, screenObject.width, 50)); titleWarp.backgroundColor=UIColor.blackColor()....
分类:
编程语言 时间:
2015-11-27 17:02:59
阅读次数:
169