码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
iOS笔记(常用的一些知识点)
这是我在公司做项目时,顺便做的一些笔记....... //1.iphone开发--改变UIPageControl里的小点的颜色 pageControl.currentPageIndicatorTintColor = [UIColor blackColor]; pageControl.pageIndicatorTintColor = [UIColor grayColor]; ...
分类:移动开发   时间:2015-05-05 16:44:26    阅读次数:151
使用类目为UIColor类扩展一个类方法实现十六进制字符串转化成UIColor对象
#import @interface UIColor (ColorWithHexStrig)+ (UIColor *)colorWithHexString:(NSString *)hexString;@end#import "UIColor+ColorWithHexStrig.h"@implemen...
分类:其他好文   时间:2015-05-04 23:33:39    阅读次数:142
NSMutableAttributedString 用法
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NS...
分类:其他好文   时间:2015-05-04 14:01:30    阅读次数:219
iOS UICollectionView 的使用
#define RGBACOLOR(r, g, b, a)   [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:(a)] #define UserCollectionViewCellID @"RRUserCollectionViewCell" static NSString *key1 = @"...
分类:移动开发   时间:2015-05-04 11:58:50    阅读次数:161
(转)UIColor,CGColor,CIColor三者的区别和联系
最近看了看CoreGraphics的东西,看到关于CGColor的东西,于是就想着顺便看看UIColor,CIColor,弄清楚它们之间的区别和联系。下面我们分别看看它们三个的概念:一、UIColor UIColor是UIKit中存储颜色信息的一个重要的类,一个UIColor对象包含了颜色和透明度....
分类:其他好文   时间:2015-05-04 09:59:16    阅读次数:97
UILabel设置不同的字体颜色
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor...
分类:其他好文   时间:2015-05-01 09:23:20    阅读次数:125
ca动画
//动画上下文-(void)animationOfUIKit{ UIView *redView=[[UIView alloc]initWithFrame:CGRectMake(10, 10, 100, 100)]; redView.backgroundColor=[UIColor redColor]...
分类:其他好文   时间:2015-04-29 11:31:13    阅读次数:179
改变UITabBarItem 字体颜色 [UI 自定义]
[homeTabItem?setTitleTextAttributes:[NSDictionary?dictionaryWithObjectsAndKeys:[UIColor?redColor],UITextAttributeTextColor,?nil]?forState:UIControlStateNormal];//正常 ???? ?????[home...
分类:其他好文   时间:2015-04-27 11:28:35    阅读次数:105
统一设置导航栏的皮肤颜色
+ (void)initialize{ UINavigationBar *bar = [UINavigationBar appearance];// [self buttonImageFromColor:[UIColor blackColor]] UIImage *image = [UIIm...
分类:其他好文   时间:2015-04-25 21:08:15    阅读次数:150
16进制颜色值变幻UIColer
+ (UIColor *) colorFromHexRGB:(NSString *) colorString {     UIColor *result = nil;     unsigned int colorCode = 0;     unsigned char redByte, greenByte, blueByte;          if (nil != colo...
分类:其他好文   时间:2015-04-24 14:19:16    阅读次数:99
848条   上一页 1 ... 58 59 60 61 62 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!