码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
swift:使用协议protocol设置颜色,UIImage的切圆角ImageWithCornerRadius
//使用协议方便以后切换颜色配置文件、或者做主题配色之类乱七八糟产品经理最爱的功能protocolV2EXColorProtocol{varv2_backgroundColor:UIColor{get}varv2_navigationBarTintColor:UIColor{get}varv2_TopicListTitleColor:UIColor{get}varv2_TopicListUserNameColor:UIColor{g..
分类:编程语言   时间:2017-04-30 01:01:04    阅读次数:238
iPad actionsjeet
在iphone和ipad上使用UIActionShee控件t的效果会不一样,在苹果的官方文档中有相关说明: 在ipad上使用UIActionSheet控件改控件不再从底部弹出,而是从屏幕中间弹出与UIAlertView警告框弹出有点类似。效果如图所示,cancelButton按钮文字显示不出来,de ...
分类:其他好文   时间:2017-04-28 10:23:30    阅读次数:192
iOS 实现后台 播放音乐声音 AVAudioPlayer
1、步骤一:在Info.plist中,添加"Required background modes"键,value为:App plays audio 或者: 步骤二: - (BOOL)application:(UIApplication *)application didFinishLaunchingW ...
分类:移动开发   时间:2017-04-25 17:01:40    阅读次数:396
通过渲染改变tabBarItem的背景图片
UITabBarController *tabVC = [[UITabBarController alloc] init]; TestVC *vc = [TestVC new]; tabVC.tabBar.tintColor = [UIColor greenColor]; UINavigationC ...
分类:其他好文   时间:2017-04-24 12:12:12    阅读次数:137
给导航条设置成颜色的背景图像 : UIGraphicsBeginImageContext ...
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
UIWebView半透明设置
在项目中有时候需要弹出活动弹框,由于原生的样式会固定,所以考虑h5显示,这就需要webView的背景色半透明,如图: 让 UIWebView 背景透明需要以下设置 webView.backgroundColor = [UIColor clearColor];?webView.opaque = NO; ...
分类:Web程序   时间:2017-04-20 10:42:05    阅读次数:206
CAShapeLayer使用
UIView *showView = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)]; [self.view addSubview:showView]; showView.backgroundColor = [UIColor ...
分类:其他好文   时间:2017-04-19 10:22:12    阅读次数:202
RGB(FFFFFF)转255:255:255
NSString *color = model.display_color; long colorLong = strtoul([color cStringUsingEncoding:NSUTF8StringEncoding], 0, 16); // 通过位与方法获取三色值 int R = (col ...
分类:其他好文   时间:2017-04-14 12:51:48    阅读次数:175
iOS 对H5加载html的数据的一些基础设置
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
848条   上一页 1 ... 9 10 11 12 13 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!