码迷,mamicode.com
首页 >  
搜索关键字:uibutton    ( 1178个结果
swift 自定义UIRadioButton(待完善)
import UIKit class UIRadioButton: UIButton { private var ischeck = false override init(frame: CGRect) { super.init(frame: frame) self.layer.borderColo ...
分类:编程语言   时间:2017-01-10 13:16:57    阅读次数:265
iOS开发_初识视频直播
一、使用第三方ijkPlayer框架开发直播1、去到B站得github主页,找到ijkplayer项目,下载源码 ijkplayer下载地址2、Demo的使用以及如何编译Demo 请移步如何快速的...
分类:移动开发   时间:2017-01-09 10:09:24    阅读次数:321
Xamarin.ios 基本控件
1、按钮 UIButton UIButton btn = new UIButton(); btn.Frame = new RectangleF(150,310,80,30); //按钮位置一件宽高 btn.SetTitle("Button",UIControlState.Normal); //显示的 ...
分类:移动开发   时间:2017-01-04 11:03:17    阅读次数:614
UI第十二节
- (void)viewDidLoad { [super viewDidLoad]; UIButton *btn = [UIButton buttonWithType:UIButtonTypeSystem]; btn.frame = CGRectMake(40, 100, 295, 30); [bt ...
分类:其他好文   时间:2017-01-03 11:41:52    阅读次数:202
【swift】BlockOperation和GCD实用代码块
BlockOperation和GCD实用代码块 ...
分类:编程语言   时间:2017-01-01 22:36:58    阅读次数:440
swfit-计时器
import UIKit class FourVC: UIViewController { var label:UILabel = UILabel() var index : Int = 1 var timer:Timer = Timer() override func viewDidLoad() ... ...
分类:其他好文   时间:2016-12-30 18:42:56    阅读次数:169
iOS·UIButton如何文字在下图片在上
创建子类继承自UIButton,在layoutSubviews方法中改变文字和图片的位置就可以了,同理,稍作改变,可以写出文字在上图片在下.本文只给出文字在下图片在上的代码 效果: ...
分类:移动开发   时间:2016-12-28 02:20:33    阅读次数:257
设置UIButton的文字显示位置、字体的大小、字体的颜色
btn.frame = CGRectMake(x, y, width, height); [btn setTitle: @"search" forState: UIControlStateNormal]; //设置按钮上的自体的大小 //[btn setFont: [UIFont systemFon ...
分类:其他好文   时间:2016-12-27 13:27:37    阅读次数:213
Swift_提醒框
import UIKit class ViewController: UIViewController { var button : UIButton! var array = NSMutableArray() override func viewDidLoad() { super.viewDidL ...
分类:编程语言   时间:2016-12-27 09:45:40    阅读次数:264
iOS View自定义窍门——UIButton实现上显示图片,下显示文字
“UIButton实现上显示图片,下显示文字”这个需求相信大家在开发中都或多或少会遇见。比如自定义分享View的时候。当然,也可以封装一个item,上边imageView,下边一个label。但是既然有现成的,稍微改造下,设置下就可以,干嘛还要重复造轮子。有时候好多东西不是他们没有给设置,而是暂时没 ...
分类:移动开发   时间:2016-12-24 16:42:12    阅读次数:312
1178条   上一页 1 ... 11 12 13 14 15 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!