//使用协议方便以后切换颜色配置文件、或者做主题配色之类乱七八糟产品经理最爱的功能protocolV2EXColorProtocol{varv2_backgroundColor:UIColor{get}varv2_navigationBarTintColor:UIColor{get}varv2_TopicListTitleColor:UIColor{get}varv2_TopicListUserNameColor:UIColor{g..
分类:
编程语言 时间:
2017-04-30 01:01:04
阅读次数:
238
在iphone和ipad上使用UIActionShee控件t的效果会不一样,在苹果的官方文档中有相关说明: 在ipad上使用UIActionSheet控件改控件不再从底部弹出,而是从屏幕中间弹出与UIAlertView警告框弹出有点类似。效果如图所示,cancelButton按钮文字显示不出来,de ...
分类:
其他好文 时间:
2017-04-28 10:23:30
阅读次数:
192
1、步骤一:在Info.plist中,添加"Required background modes"键,value为:App plays audio 或者: 步骤二: - (BOOL)application:(UIApplication *)application didFinishLaunchingW ...
分类:
移动开发 时间:
2017-04-25 17:01:40
阅读次数:
396
UITabBarController *tabVC = [[UITabBarController alloc] init]; TestVC *vc = [TestVC new]; tabVC.tabBar.tintColor = [UIColor greenColor]; UINavigationC ...
分类:
其他好文 时间:
2017-04-24 12:12:12
阅读次数:
137
self.navigationBar.setBackgroundImage(createImageWithColor(UIColor.clear),for:.default)//////////////////////funccreateImageWithColor(_color:UIColor)->UIImage{returncreateImageWithColor(color,size:CGSize(width:1,height:1))}funccreateImageWithColor(_color..
分类:
其他好文 时间:
2017-04-23 23:16:47
阅读次数:
436
在项目中有时候需要弹出活动弹框,由于原生的样式会固定,所以考虑h5显示,这就需要webView的背景色半透明,如图: 让 UIWebView 背景透明需要以下设置 webView.backgroundColor = [UIColor clearColor];?webView.opaque = NO; ...
分类:
Web程序 时间:
2017-04-20 10:42:05
阅读次数:
206
UIView *showView = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)]; [self.view addSubview:showView]; showView.backgroundColor = [UIColor ...
分类:
其他好文 时间:
2017-04-19 10:22:12
阅读次数:
202
NSString *color = model.display_color; long colorLong = strtoul([color cStringUsingEncoding:NSUTF8StringEncoding], 0, 16); // 通过位与方法获取三色值 int R = (col ...
分类:
其他好文 时间:
2017-04-14 12:51:48
阅读次数:
175
NSString *title = [NSString stringWithFormat:@"<p><font color=\"black\" size=\"4\"><strong>%@</strong></font> </p>",_webTitle]; //设置webView 标题打大小和颜色 以 ...
分类:
移动开发 时间:
2017-04-10 14:39:27
阅读次数:
218
1.了解NSAttributedString类 NSDictionary *attributes = @{NSForegroundColorAttributeName: [UIColor redColor],NSFontAttributeName:[UIFont fontWithName:@"Zap ...
分类:
其他好文 时间:
2017-03-27 15:33:36
阅读次数:
140