iOS - UIButton按钮发生事件
程序员文章站
2022-05-09 20:32:26
UIButton
按钮发生事件
- (IBAction)clickRedButton
{
// 改变文字颜色
self.label.textColor...
UIButton
按钮发生事件
- (IBAction)clickRedButton { // 改变文字颜色 self.label.textColor = [UIColor redColor]; // 改变文字内容 self.label.text = @"我是红色"; // 改变文字背景颜色 self.label.backgroundColor = [UIColor greenColor]; // 改变文字对齐方式NSTextAlignmentCenter:居中,NSTextAlignmentRight:靠右,NSTextAlignmentLeft:靠左 self.label.textAlignment = NSTextAlignmentCenter; // 改变文字大小 self.label.font = [UIFont systemFontOfSize:30.f]; }
上一篇: 我早就觉得你恶心了
推荐阅读
-
iOS开发- runtime基本用法解析和用runtime给键盘添加工具栏和按钮响应事件
-
iOS之UIButton扩大按钮的响应区域
-
iOS - UIButton按钮发生事件
-
iOS UIButton扩大按钮响应区域的解决方法
-
iOS开发--UIKit控件之UIButton(按钮)
-
iOS-button利用block封装按钮事件【runtime 关联】
-
【读书笔记】iOS-storyBoard-为一个按钮添加一个点击事件
-
iOS开发- runtime基本用法解析和用runtime给键盘添加工具栏和按钮响应事件
-
iOS之UIButton扩大按钮的响应区域
-
iOS - UIButton按钮发生事件