[self.KVOController observe:vc keyPath:@"self.view" options:NSKeyValueObservingOptionInitial|NSKeyValueObservingOptionNew block:^(id observer, id obje ...
分类:
其他好文 时间:
2018-01-18 18:26:59
阅读次数:
195
我们在开发应用的时候,经常会用到各种各样的控件,诸如按钮(UIButton)、滑块(UISlider)、分页控件(UIPageControl)等。这些控件用来与用户进行交互,响应用户的操作。我们查看这些类的继承体系,可以看到它们都是继承于UIControl类。UIControl是控件类的基类,它是一 ...
分类:
移动开发 时间:
2018-01-06 17:14:46
阅读次数:
299
- (UIButton *)navSearBtn { if (!_navSearBtn) { _navSearBtn = [[UIButton alloc]init]; _navSearBtn.backgroundColor = [UIColor clearColor]; _navSearBtn.t... ...
分类:
其他好文 时间:
2017-12-07 13:18:50
阅读次数:
137
在iOS11上当使用如下代码设置时 UIButton *shareButton = [UIButton buttonWithType:(UIButtonTypeCustom)]; shareButton.frame = CGRectMake(0, 0, 30, 30); shareButton.ba ...
分类:
移动开发 时间:
2017-11-21 14:30:30
阅读次数:
385
对于日常中重复性的可以抽取的实现尽量抽取 比如实现导航栏右侧 UIBarButtonItem的添加 如果使用 private func setupNavigateionBar(){ let btn = UIButton() btn.setImage(UIImage(named:"icon_shouy ...
分类:
编程语言 时间:
2017-11-14 14:39:39
阅读次数:
223
var bgImage = UIImageView() var backButton = UIButton() var titleLabel = UILabel() let screen_h = UIScreen.main.bounds.height let screen_w = UIScreen. ...
分类:
编程语言 时间:
2017-11-07 22:11:00
阅读次数:
301
对于一个很常用的两个库, MJRefresh 如何可以像 UIButton 使用方式呢: Rxswift 中的很多类似处理的方式都使用了跟下面极为相似的代码, 进行针对UIControl的适配时,是通过一个中间层ControlTarget来完成的,为了保持这个ControlTarget实例的存活,使 ...
分类:
编程语言 时间:
2017-11-04 19:38:14
阅读次数:
187
在iOS的图片加载框架中,SDWebImage可谓是占据大半壁江山。它支持从网络中下载且缓存图片,并设置图片到对应的UIImageView控件或者UIButton控件。在项目中使用SDWebImage来管理图片加载相关操作可以极大地提高开发效率,让我们更加专注于业务逻辑实现。 SDWebImage ...
分类:
移动开发 时间:
2017-10-25 11:13:30
阅读次数:
215
在info.plist设置要显示的语言 1.通用字符串的标准翻译(ok,删除,取消)等 NSLocalizedString("Delete", tableName: "", bundle: Bundle(for: UIButton.classForCoder()), value: "", comme ...
分类:
编程语言 时间:
2017-10-24 22:36:15
阅读次数:
263
两种方法1:直接遍历searchBar子视图,这种方法不太好,因为随着版本升级它内部层级可能会发生变化(例如IOS11的导航栏,懂得自然懂) 2:取私有变量 UIButton *cancel = [self valueForKey:@"_cancelButton"]; [cancel setTitl ...
分类:
移动开发 时间:
2017-10-24 21:06:27
阅读次数:
227