//获取到当前所在的视图 - (UIViewController *)presentingVC:(UIApplication *)application{ UIWindow * window = application.keyWindow; if (window.windowLevel != UIW ...
分类:
移动开发 时间:
2018-01-02 18:48:40
阅读次数:
176
顺传 假设A为第一个视图控制器,B为第二个视图控制器 在A中导入B的.h文件 场景:A向B传值 第一步:在B的.h中定义一个content属性 @interfaceSecondViewController:UIViewController@property(nonatomic,copy)NSStri ...
分类:
移动开发 时间:
2017-12-29 12:23:55
阅读次数:
220
当你某一天发现app从首页控制器跳到下n级控制器时,需要隐藏底部tabar时,隐藏不了。 找了半天资料,发现控制器有一个叫hidesBottomBarWhenPushed的属性,但还不知道怎么 用,首先给控制器UIViewController加一个分类方法: - (void)pushViewCont ...
分类:
移动开发 时间:
2017-12-28 15:03:26
阅读次数:
148
iOS 获取当前顶层的ViewController #pragma mark - topVC - (UIViewController *)theTopviewControler { UIViewController *resultVC; resultVC = [self _topViewContro ...
分类:
移动开发 时间:
2017-12-21 19:40:13
阅读次数:
154
禁止转屏是这个意思,在General中设置Device Orientation只有竖屏。 要点就是重写UIViewController的以下3个属性方法 系统的全屏视频播放器是AVFullScreenViewController,但并未暴露出任何的API,所以要在UIViewController的扩 ...
分类:
移动开发 时间:
2017-12-21 19:38:13
阅读次数:
241
import UIKit import CoreData class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } } //MARK: - CoreData extensi ...
分类:
编程语言 时间:
2017-11-10 21:43:27
阅读次数:
206
import UIKit class firstViewController: UIViewController,UIImagePickerControllerDelegate,UINavigationControllerDelegate { var picker :UIImagePickerCon ...
分类:
编程语言 时间:
2017-11-03 00:10:26
阅读次数:
284
解决push VC , tabbar 跳动问题: - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated { if (self.viewControllers.count > 0) { ...
分类:
移动开发 时间:
2017-10-27 16:00:26
阅读次数:
233
iOS 7 之后苹果给 UIViewController 引入了 topLayoutGuide 和 bottomLayoutGuide 两个属性来描述不希望被透明的状态栏或者导航栏遮挡的最高位置(status bar, navigation bar, toolbar, tab bar 等)。这个属性 ...
分类:
其他好文 时间:
2017-10-26 11:42:15
阅读次数:
713
import UIKitclass ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let image = UIImage.init(named: "111.png"); let ...
分类:
编程语言 时间:
2017-10-19 12:53:23
阅读次数:
222