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
//文字在左,图片在右 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
直接上代码: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let btn = UIButton.init(frame: CGRect.i ...
分类:
编程语言 时间:
2017-09-27 17:37:43
阅读次数:
942
在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
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
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
1、自定义cell //#import "EnjoyListModel.h" @protocol EnjoyCollectionCellOfViewDelegate <NSObject> - (void)freeButtonDelegateAction:(UIButton *)sender; @en ...
分类:
移动开发 时间:
2017-09-14 13:58:20
阅读次数:
272
根据定义可以看出 UIViewContentMode 是UIView的属性,所以这里分别对UIImageView、UIView、UILabel、UIButton设置contentMode属性来查看相应效果。 通过测试可以看到,contentMode属性的设置,在视觉上只对UIImageView起作用 ...
分类:
移动开发 时间:
2017-09-04 18:59:21
阅读次数:
254
// // 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