码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
自定义导航栏字体、颜色
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
UISearchBar 改变背景色
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
IOS 创建一张有颜色的UIImage
#import @interface UIImage (ImageWithColor)+ (UIImage *)imageWithColor:(UIColor *)color;@end#import "UIImage+ImageWithColor.h"@implementation UIImage ...
分类:移动开发   时间:2014-11-04 19:22:43    阅读次数:726
UITextView上添加默认文字
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的常用属性,Delegate,重绘
一 属性 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
tabBar中tabBarItem选中颜色自定义设置
1.在storyBoard中,选中tabBarController,设置tabBar如图2. 直接代码设置tabBarController.tabBar.selectedImageTintColor = [UIColor orangeColor];修改tabBarItem的字体颜色:[tabBarI...
分类:其他好文   时间:2014-10-30 20:50:00    阅读次数:239
IOS中利用宏将RGB值转换为UIColor(转)
可以在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
Objective C - UIColor
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
848条   上一页 1 ... 72 73 74 75 76 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!