NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:self.title];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor customBl...
分类:
其他好文 时间:
2015-08-17 10:16:03
阅读次数:
96
UIViewController *contentViewController = [[UIViewController alloc] init]; contentViewController.view.backgroundColor = [UIColor yellowColor]; ...
分类:
移动开发 时间:
2015-08-14 00:57:17
阅读次数:
241
通过block实现从第二个页面向第一个页面传值,不需要写协议,可以直接传1.在第一个页面创建一个button按钮,从按钮的点击方法实现传值// 设置背景颜色代码:[self.view setBackgroundColor:[UIColor redColor]];// 设置不透明代码:self.navigationController.navigationBar.translucent=NO;...
分类:
其他好文 时间:
2015-08-13 15:52:30
阅读次数:
100
//父试图设置颜色半透明,而且子试图不会受影响
FatherView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.5];...
分类:
其他好文 时间:
2015-08-12 21:51:43
阅读次数:
111
//设置字体大小 颜色 { UIColor *color = [UIColor brownColor]; UIFont * font = [UIFont systemFontOfSize:20]; NSDictionary * dict = [NSDictionary dic...
分类:
其他好文 时间:
2015-08-12 18:38:04
阅读次数:
130
1.设置UITableViewCell的背景色透明方法: cell.backgroundColor=[UIColor?clearColor]; 或者设置颜色透明度为0: cell.backgroundColor?=?[UIColor?colorWithWhite:0.0f?alpha:0.0f]; 2.设置UITableViewCe...
分类:
移动开发 时间:
2015-08-11 12:26:41
阅读次数:
309
特别常用的都可以设置为代码片段,提高工作效率 1,设置多行label的间距
?self.view.backgroundColor=[UIColor?whiteColor];
????UILabel?*label=[[UILabel?alloc]initWithFrame:CGRectMake(100,?100,?...
分类:
其他好文 时间:
2015-08-11 10:23:16
阅读次数:
149
UISearchBar *searchBar=[[UISearchBar alloc]initWithFrame:frame]; //这个设置背景透明可能无效 searchBar.backgroundColor=[UIColor clearColor]; //可采用如下方法...
分类:
其他好文 时间:
2015-08-09 22:11:46
阅读次数:
151
通过 setValue: forKeyPath:
这个方法来设置一些属性信息
UITextField *textfield = [UITextField new];
[textfield setValue:[UIColor redcolor] forKeyPath:@"_placeholderLabel.textColor"];
[self s...
分类:
其他好文 时间:
2015-08-07 11:05:53
阅读次数:
92
<head>标签内引入<scriptsrc="${ctx}/ckeditor/ckeditor.js"type="text/javascript"></script>config.js配置文件CKEDITOR.editorConfig=function(config){
//Definechangestodefaultconfigurationhere.Forexample:
config.language=‘zh-cn‘;
config.uiColor=..
分类:
Web程序 时间:
2015-08-06 18:42:03
阅读次数:
160