解决方法 - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated { // 如果有大于控制器 if (self.childViewControllers.count >= 1) { v ...
分类:
移动开发 时间:
2017-10-10 13:09:00
阅读次数:
266
#import @interface UIView (Responser) /** view的第一个响应控制器 @return view的第一个响应控制器 */ - (UIViewController *)viewController; @end #import "UIView+Responser.... ...
分类:
其他好文 时间:
2017-10-09 09:49:28
阅读次数:
158
每一步:添加 AVFoundation.framework 库 General > Linked Frameworks and Libraries 第二步:代码集成 #import "ViewController.h" #import <AVFoundation/AVFoundation.h> // ...
分类:
移动开发 时间:
2017-10-07 02:03:09
阅读次数:
266
#import "ViewController.h" @interface ViewController () // 用于显示生成二维码图片的 imageView @property (weak, nonatomic) IBOutlet UIImageView *imageView; @end @i ...
分类:
移动开发 时间:
2017-10-06 23:50:22
阅读次数:
262
图层行为 现在来做个实验,试着直接对UIView关联的图层做动画而不是一个单独的图层。清单7.4是对清单7.2代码的一点修改,移除了colorLayer,并且直接设置layerView关联图层的背景色。 清单7.4 直接设置图层的属性 1 @interface ViewController () 2 ...
分类:
其他好文 时间:
2017-10-04 14:09:56
阅读次数:
179
1 // 2 // ViewController.m 3 // UIWindowsApp 4 // 7 // 8 9 #import "ViewController.h" 10 #import "ViewController2.h" 11 12 @interface ViewController (... ...
分类:
其他好文 时间:
2017-09-28 14:17:58
阅读次数:
147
1 // 2 // ViewController.m 3 // UIWindowsApp 4 // 5 // Created by on 21/09/2017. 6 // Copyright © 2017 . All rights reserved. 7 // 8 9 #import "ViewCo... ...
分类:
其他好文 时间:
2017-09-27 21:43:49
阅读次数:
157
直接上代码: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let btn = UIButton.init(frame: CGRect.i ...
分类:
编程语言 时间:
2017-09-27 17:37:43
阅读次数:
942
UIScrollView and UITableView的新特性 ScrollView 如果有一些文本位于UI滚动视图的内部,并包含在导航控制器中,现在一般navigationContollers会传入一个contentInset给其最顶层的viewController的scrollView,在iO ...
分类:
移动开发 时间:
2017-09-26 11:12:41
阅读次数:
368
1 #import "ViewController.h" 2 #import "ViewController2.h" 3 4 @interface ViewController () 5 6 @end 7 8 @implementation ViewController 9 10 @synthesi... ...
分类:
其他好文 时间:
2017-09-23 13:31:38
阅读次数:
205