这是我在公司做项目时,顺便做的一些笔记.......
//1.iphone开发--改变UIPageControl里的小点的颜色
pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
pageControl.pageIndicatorTintColor = [UIColor grayColor];
...
分类:
移动开发 时间:
2015-05-05 16:44:26
阅读次数:
151
#import @interface UIColor (ColorWithHexStrig)+ (UIColor *)colorWithHexString:(NSString *)hexString;@end#import "UIColor+ColorWithHexStrig.h"@implemen...
分类:
其他好文 时间:
2015-05-04 23:33:39
阅读次数:
142
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NS...
分类:
其他好文 时间:
2015-05-04 14:01:30
阅读次数:
219
#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
最近看了看CoreGraphics的东西,看到关于CGColor的东西,于是就想着顺便看看UIColor,CIColor,弄清楚它们之间的区别和联系。下面我们分别看看它们三个的概念:一、UIColor UIColor是UIKit中存储颜色信息的一个重要的类,一个UIColor对象包含了颜色和透明度....
分类:
其他好文 时间:
2015-05-04 09:59:16
阅读次数:
97
NSMutableAttributedString *str
= [[NSMutableAttributedString alloc]
initWithString:@"Using
NSAttributed String"];
[str
addAttribute:NSForegroundColorAttributeName value:[UIColor
blueColor...
分类:
其他好文 时间:
2015-05-01 09:23:20
阅读次数:
125
//动画上下文-(void)animationOfUIKit{ UIView *redView=[[UIView alloc]initWithFrame:CGRectMake(10, 10, 100, 100)]; redView.backgroundColor=[UIColor redColor]...
分类:
其他好文 时间:
2015-04-29 11:31:13
阅读次数:
179
[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
+ (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