1.关于导航栏左右两边的按钮 2.修改标题 //设置导航控制器标题的颜色和字体大小等 NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys: [UIColor whiteColor],NSForegroundCol ...
分类:
移动开发 时间:
2017-03-27 10:46:18
阅读次数:
496
// cell默认分隔线左边有间距,把left设为0就没了 tbv.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0) // 设置cell分隔线颜色 tbv.separatorColor = UIColor.red ...
分类:
其他好文 时间:
2017-03-24 17:39:10
阅读次数:
148
一.疑问?? 最近在使用UIWebView,发现好多小问题,现整理如下: 1.使用xib加载UIWebView控件时可以设置BackGroundColor但是无效 2.使用纯代码设置self.webView.backgroundColor = [UIColor redColor];无效 3.代码可实 ...
分类:
Web程序 时间:
2017-03-22 18:05:47
阅读次数:
203
// 监听slider滑动 - (IBAction)valueChnage:(UISlider *)sender; @property (weak, nonatomic) IBOutlet NJView *circleView; @end @implementation NJViewControll... ...
分类:
移动开发 时间:
2017-03-21 23:01:39
阅读次数:
1025
+ (UIImage *)imageWithColor:(UIColor *)color { CGRect rect = CGRectMake(0, 0, 1, 1); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UI ...
分类:
其他好文 时间:
2017-03-13 12:44:32
阅读次数:
134
描述下场景:button在不同的状态显示不同的title样式 比如normal 下 font是[UIFont systemFontOfSize:18.0f weight:UIFontWeightRegular] 颜色是 [UIColor blackColor] select 下 font 是[UIF ...
分类:
移动开发 时间:
2017-03-05 11:36:18
阅读次数:
599
//1.添加按钮 UIButton *nameView=[UIButton buttonWithType:UIButtonTypeCustom]; //nameView.backgroundColor=[UIColor redColor]; [nameView setBackgroundImage:... ...
分类:
移动开发 时间:
2017-03-03 14:59:20
阅读次数:
166
用了别人的代码,一直总有一个报错,一开始没注意,最近项目快完期了,得处理下警告之类的东西, 后面发现之前那个大神代码是这样写的 援引:http://www.cnblogs.com/songxing10000/p/6297542.html ...
分类:
其他好文 时间:
2017-02-27 13:38:04
阅读次数:
323
#import "ViewController.h" #import "UIColor+Hex.h" #define XMGColor(r,g,b) [UIColor colorWithRed:(r) / 256.0 green:(g) / 256.0 blue:(b) / 256.0 alpha:... ...
分类:
其他好文 时间:
2017-02-23 00:08:58
阅读次数:
165