#define ColorWithString(string) [MPUniversal colorWithString:string]/*** 转换字符串为UIColor** @param string 字符串类型:ffffff六位,ffffffff八位,#ffffff,#ffffffff; 字符...
分类:
其他好文 时间:
2014-07-29 17:02:32
阅读次数:
241
//uiTableView透明效果 tableView.backgroundView=nil; tableView.backgroundColor=[UIColor clearColor]; uiTableViewCellPullDown.textLabel.backgrou...
分类:
其他好文 时间:
2014-07-29 12:23:16
阅读次数:
136
//设置字体:粗体,正常的是?SystemFontOfSize?? ?? ? ? label.font?= [UIFont?boldSystemFontOfSize:20];? ? ? ? ??//设置文字颜色?? ? ? label.textColor?= [UIColor?orangeColor]; ? ? ...
分类:
其他好文 时间:
2014-07-27 12:15:42
阅读次数:
213
点标记语法属性和幂等方法(多次调用和一次调用返回的结果相同)使用点标记语法访问,其他的情况使用方括号标记语法。良好的风格:view.backgroundColor = [UIColor orangeColor];[UIApplication sharedApplication].delegate;不...
分类:
其他好文 时间:
2014-07-26 00:47:46
阅读次数:
274
self.textView = [[[UITextView alloc] initWithFrame:self.view.frame] autorelease];//初始化大小并自动释放self.textView.textColor = [UIColor blackColor];//设置textvi...
分类:
其他好文 时间:
2014-07-25 02:30:04
阅读次数:
267
#define DEFAULT_VOID_COLOR [UIColor whiteColor]+ (UIColor *)colorWithHexString:(NSString *)stringToConvert
{
NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet w...
分类:
移动开发 时间:
2014-07-19 02:17:16
阅读次数:
214
让UIWebView的背景透明:12self.webView.backgroundColor = [UIColor clearColor];self.webView.opaque = NO这样就可以背景透明了,如果还是无效的话,那么需要在html里面加入: 去掉uiwebview滚动到边缘时的阴影....
分类:
Web程序 时间:
2014-07-18 14:26:56
阅读次数:
223
- (void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor];}
分类:
其他好文 时间:
2014-07-16 17:06:52
阅读次数:
163
UILabel *infoLabel = [[UILabel alloc]initWithFrame:CGRectMake(95, 20, 190, 70)]; infoLabel.backgroundColor = [UIColor clearColor]; infoLabel.textAl...
分类:
其他好文 时间:
2014-07-16 14:10:50
阅读次数:
162
#import [self.content.layer setBackgroundColor:[[UIColor whiteColor] CGColor]];[self.content.layer setBorderColor:[[UIColor grayColor] CGColor]];[self...
分类:
其他好文 时间:
2014-07-14 21:59:15
阅读次数:
201