码迷,mamicode.com
首页 >  
搜索关键字:uibutton    ( 1178个结果
Swift UIButton
let button = UIButton(type:.system); button.frame = CGRect.init(x:100,y:150,width:160,height:30); button.setTitle("SwiftBtton", for: .normal); button. ...
分类:编程语言   时间:2017-10-17 15:20:37    阅读次数:198
uibutton图片在上,文字在下。 图片在左 文字在右
//文字在左,图片在右 CGFloat imageWidth = self.button.imageView.frame.size.width; CGFloat labelWidth = self.button.titleLabel.frame.size.width; self.button.ima ...
分类:其他好文   时间:2017-09-30 13:09:05    阅读次数:332
Swift4.0添加按钮点击事件
直接上代码: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let btn = UIButton.init(frame: CGRect.i ...
分类:编程语言   时间:2017-09-27 17:37:43    阅读次数:942
iOS 11 适配工具栏(UIToolbar)
在iOS11中,ToolBar 里面的按钮的矩形可触模区域非常小,紧贴着图片,所有有时候点着没反应 在 UIButton 创建的时候,同时加一句这样的代码: [[button.widthAnchor constraintEqualToConstant:@"button的宽"] setActive:Y ...
分类:移动开发   时间:2017-09-26 16:11:26    阅读次数:464
定时器
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. // self.view.backgroundColor = [UI... ...
分类:其他好文   时间:2017-09-22 22:34:50    阅读次数:169
iOS开发---UIButton 1 //创建一个可以显示图片的按钮。
1 //创建一个可以显示图片的按钮。 2 -(void)creatImageBtn{ 3 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; 4 btn.frame = CGRectMake(100, 100, 100, 100... ...
分类:移动开发   时间:2017-09-21 13:34:11    阅读次数:220
ios uibutton加数字角标
http://www.jianshu.com/p/0c7fae1cadac 第一种:https://github.com/mikeMTOL/UIBarButtonItem-Badge第二种:https://github.com/cwRichardKim/RKNotificationHub JSBad ...
分类:移动开发   时间:2017-09-16 16:11:50    阅读次数:425
ios实现下拉刷新,上拉加载
1、自定义cell //#import "EnjoyListModel.h" @protocol EnjoyCollectionCellOfViewDelegate <NSObject> - (void)freeButtonDelegateAction:(UIButton *)sender; @en ...
分类:移动开发   时间:2017-09-14 13:58:20    阅读次数:272
iOS UIViewContentMode详解
根据定义可以看出 UIViewContentMode 是UIView的属性,所以这里分别对UIImageView、UIView、UILabel、UIButton设置contentMode属性来查看相应效果。 通过测试可以看到,contentMode属性的设置,在视觉上只对UIImageView起作用 ...
分类:移动开发   时间:2017-09-04 18:59:21    阅读次数:254
ios24--改变button的文字和图片
// // ViewController.m // 09-UIButton内部子控件的调整 // // Created by xiaomage on 15/12/30. // Copyright © 2015年 小码哥. All rights reserved. // #import "ViewCo... ...
分类:移动开发   时间:2017-09-03 17:55:06    阅读次数:244
1178条   上一页 1 ... 4 5 6 7 8 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!