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