UILabel *titleText = [[UILabel
alloc] initWithFrame: CGRectMake(kWidth/2 -60,
0, 120,
50)];
titleText.backgroundColor = [UIColor
clearColor];
titleText.textAlignment =
NSTextAlignmentCe...
分类:
其他好文 时间:
2014-11-05 13:10:39
阅读次数:
137
UIView *backView = [[UIView
alloc] initWithFrame:CGRectMake(0,
0, _searchBar.size.width,
_searchBar.size.height)];
[backView setBackgroundColor:[UIColor
colorWithRed:248/255.0
green:248/25...
分类:
其他好文 时间:
2014-11-05 13:10:04
阅读次数:
165
#import @interface UIImage (ImageWithColor)+ (UIImage *)imageWithColor:(UIColor *)color;@end#import "UIImage+ImageWithColor.h"@implementation UIImage ...
分类:
移动开发 时间:
2014-11-04 19:22:43
阅读次数:
726
1. 实现UITextView的代理方法
text.view.delegate = self;
2. 在UITextView上覆盖UILabel
ps:必须实现
label.enabled = NO;
label.backgroundColor = [UIColor
clearColor];
3. 在UITextView - Delegate中实现
-(void)textVie...
分类:
其他好文 时间:
2014-11-04 11:07:23
阅读次数:
204
一 属性 UITextField * myTextField = [[UITextField alloc] initWithFrame:CGRectMake(50, 100, 200, 50)]; myTextField.backgroundColor = [UIColor clearColor];...
分类:
其他好文 时间:
2014-11-02 23:56:20
阅读次数:
338
#import
@interface UIColor (RandomColor)
//随机颜色
+ (UIColor *)randomColor;
@end
#import "UIColor+RandomColor.h"
@implementation UIColor (RandomColor)
+ (UIColor *)randomColor {
r...
分类:
其他好文 时间:
2014-10-31 15:46:56
阅读次数:
167
1.在storyBoard中,选中tabBarController,设置tabBar如图2. 直接代码设置tabBarController.tabBar.selectedImageTintColor = [UIColor orangeColor];修改tabBarItem的字体颜色:[tabBarI...
分类:
其他好文 时间:
2014-10-30 20:50:00
阅读次数:
239
可以在pch文件中定义宏,这样整个项目就都可以用了!1 #define UIColorFromRGBValue(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((r...
分类:
移动开发 时间:
2014-10-29 18:41:25
阅读次数:
142
RootViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
self.view.backgroundColor = [UIColor greenColor];
//创建显示文字的label
UILabel *label = [[UILabel alloc] initWithFr...
分类:
其他好文 时间:
2014-10-29 14:57:16
阅读次数:
162
UIColor+Hex.h
#import
@interface UIColor (Hex)
+ (UIColor *) colorWithHexString: (NSString *) hexString;
+ (CGFloat) colorComponentFrom: (NSString *) string start: (NSUInteger) start length: (...
分类:
其他好文 时间:
2014-10-29 14:53:23
阅读次数:
230