要想让uibutton点击不变灰 初始化的时候就不能 UIButton *button = [[UIButton alloc]init]; 初始化的时候酱紫,能够保证button点击时不变灰 UIButton *button = [UIButton buttonWithType:UIButtonTy ...
分类:
其他好文 时间:
2021-06-24 18:33:25
阅读次数:
0
1、按钮分类 演示给整个工程中的按钮添加点击音效。 写一个分类,重写类的 load方法。 #import "UIButton+CH.h" #import <objc/runtime.h> @implementation UIButton (CH) + (void)load { [super load ...
分类:
其他好文 时间:
2020-11-12 13:25:34
阅读次数:
7
btn.semanticContentAttribute = .forceRightToLeft 查了下资料 semanticContentAttribute 是反转 ,即描述视图的内容,用来确定视图之间切换时应翻转从左到右和从右到左的布局 最低支持到9.0 参考链接:https://www.jia ...
分类:
编程语言 时间:
2020-07-27 13:58:20
阅读次数:
110
前提:父子控件是相当于两个对象而言的,单个对象没有父子关系。 在Xcode中,每一个控件都是容器,可以装载其他控件。在一个父控件中拖入或者代码写入一个控件,这两个控件就构成父子关系。即大的控件是小的控件的父控件,小的控件是打的控件的子控件。 添加子控件 UIButton * btu; [self.v ...
分类:
其他好文 时间:
2020-04-01 01:13:23
阅读次数:
86
续学习(一)、学习(二) 三、示例学习 3.响应用户选择 有了学习(一)和学习(二)的基础,我直接开门见山,分析其中的核心部分。 (1)界面 相比之前两个的界面,这个界面要高级很多了。首先是整个界面分为两个面板,左面板和右面板。 左面板部分从上到下依次是控件: 标签Data Selection 三个 ...
分类:
移动开发 时间:
2020-03-25 23:29:33
阅读次数:
139
看图 下面附上代码import UIKit class ViewController: UIViewController { @IBOutlet weak var display: UITextField! @IBAction func xianshi(_ sender: UIButton) { d ...
分类:
移动开发 时间:
2020-03-02 22:24:38
阅读次数:
68
一、需求实现一个前后带图标的输入框 这是一个简单的自定义控件,很容易想到自定义一个视图(UIView),然后前后的图标使用 UIImageView 或者 UIButton 显示,中间放一个 UITextField 就可以了 实现方式上可以 InterfaceBuilder 创建,也可以使用纯代码实现 ...
分类:
移动开发 时间:
2020-01-11 13:36:24
阅读次数:
115
//例如: UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.frame = CGRectMake(50,50,100,40); button.backgroundColor = [UIColor blue ...
分类:
移动开发 时间:
2019-10-17 23:43:57
阅读次数:
135
func aa(){ let btn:UIButton = UIButton.init(type: UIButton.ButtonType.custom); btn.frame = CGRect.init(x: 10, y: 10, width: 100, height: 100);//frame ... ...
分类:
编程语言 时间:
2019-10-09 09:37:37
阅读次数:
104
@interface ViewController () @property (weak, nonatomic) IBOutlet lwRedView *redView; @property (weak, nonatomic) IBOutlet UIButton *lwbtn; @property ... ...
分类:
其他好文 时间:
2019-06-01 13:57:40
阅读次数:
110