一直在使用UIButton创建按钮,包括Plain纯文字型的按钮、设置背景图片、设置选中状态图片按钮…特别是当我们的提供的图片比按钮本身的尺寸小时,会导致按钮没有被图片完全填充,当图片比button大时,图片会超出button的frame范围(除非设置button.layer.maskToBound ...
分类:
其他好文 时间:
2018-05-01 00:36:51
阅读次数:
185
面试被问到这个问题,不是很清楚,写代码测试并记录一下。 #pragma mark - 测试通知-(void)testNotification{ // 初始化一个按钮 UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(100, ...
分类:
移动开发 时间:
2018-04-27 23:02:37
阅读次数:
302
// // YViewGradient.m // AoleYou20170907 // // Created by XY IOS on 2018/4/25. // Copyright © 2018年 -陈诗友. All rights reserved. // #import "YViewGradie... ...
分类:
移动开发 时间:
2018-04-25 17:03:37
阅读次数:
177
1.通过分类的方式,对外暴露接口。 2.给分类添加属性,通过imageURLStorageKey值,将self 和 字典进行绑定。 通过sd_imageURLForState等方法进行取值。 3.调用UIView +WebCache 的sd_internalSetImageWithURL方法 ,设置 ...
分类:
Web程序 时间:
2018-03-30 21:58:05
阅读次数:
225
首先应该获取缓存路径,然后计算缓存的总大小,最后在利用for循环,逐个删除缓存文件夹里面的文件 下面附上完整的代码例子 //清除缓存按钮的点击事件 - (void)putBufferBtnClicked:(UIButton *)btn{ CGFloat size = [self folderSize ...
分类:
移动开发 时间:
2018-03-10 22:11:05
阅读次数:
261
此文学习来源为:http://study.163.com/course/introduction/1002858003.htm 此工程文件实现功能: 1、UIButton的控件基本概念 2、UIButton的创建方法 3、UIButton的类型 4、可显示图片的UIButton 可将准备好的图片直接 ...
分类:
移动开发 时间:
2018-03-08 18:10:49
阅读次数:
287
一,通过按钮的事件来设置背景色 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 - (void)viewDidLoad { [super viewDidLoad]; UIButton *button1 = [[UIButton all ...
分类:
移动开发 时间:
2018-03-07 13:20:02
阅读次数:
1962
UIGestureRecognizer 方法 UIGestureRecognizer是一个抽象类,定义了所有手势的基本行为,使用它的子类才能处理具体的手势 关于UIGestureRecognizerDelegate代理的内容 UITapGestureRecognizer和UIButton的点击事件冲 ...
分类:
移动开发 时间:
2018-02-26 15:10:53
阅读次数:
256
1 import UIKit 2 3 class ViewController: UIViewController, UIPageViewControllerDelegate, UIPageViewControllerDataSource { 4 5 @IBOutlet weak var redBt... ...
分类:
编程语言 时间:
2018-02-24 15:10:28
阅读次数:
267
系统button 系统button运行一个app特定的动作。 API NOTE 在iOS 7中,UIButtonTypeRoundedRect被又一次定义成UIButtonTypeSystem。查看UIButton学习很多其它关于在你的代码中定义一个系统button的内容。 一个系统button: ...
分类:
移动开发 时间:
2018-02-17 17:51:54
阅读次数:
212