码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
设置字符串中某些字符的特殊效果
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:self.title];     [attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor customBl...
分类:其他好文   时间:2015-08-17 10:16:03    阅读次数:96
iOS UIPopoverView的使用
UIViewController *contentViewController = [[UIViewController alloc] init]; contentViewController.view.backgroundColor = [UIColor yellowColor]; ...
分类:移动开发   时间:2015-08-14 00:57:17    阅读次数:241
Block 传值
通过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
UINavigationController 操作记录
//设置字体大小 颜色 { UIColor *color = [UIColor brownColor]; UIFont * font = [UIFont systemFontOfSize:20]; NSDictionary * dict = [NSDictionary dic...
分类:其他好文   时间:2015-08-12 18:38:04    阅读次数:130
iOS设置UITableViewCell的背景色透明和选中颜色的方法
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去除背景颜色
UISearchBar *searchBar=[[UISearchBar alloc]initWithFrame:frame]; //这个设置背景透明可能无效 searchBar.backgroundColor=[UIColor clearColor]; //可采用如下方法...
分类:其他好文   时间:2015-08-09 22:11:46    阅读次数:151
setValue: forKeyPath:
通过 setValue:    forKeyPath: 这个方法来设置一些属性信息           UITextField *textfield = [UITextField new]; [textfield setValue:[UIColor redcolor] forKeyPath:@"_placeholderLabel.textColor"]; [self s...
分类:其他好文   时间:2015-08-07 11:05:53    阅读次数:92
ckedit 浏览图片和上传图片
<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
848条   上一页 1 ... 44 45 46 47 48 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!