rootview.h #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface RootViewController : UIViewController @end rootview.m #import "RootViewControlle ...
分类:
其他好文 时间:
2020-08-08 21:24:32
阅读次数:
87
root m #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (void)viewDidLoad { [super viewDidLoa ...
分类:
其他好文 时间:
2020-07-30 01:48:18
阅读次数:
96
知识点 1.基础操作 2.代理协议 #import "RootViewController.h" // 第一个条件签订协议, 好比是我要卖安利的产品,我首先要签订一个协议 @interface RootViewController ()<UITableViewDelegate> @end @impl ...
分类:
其他好文 时间:
2020-07-15 01:06:30
阅读次数:
62
UILabel m #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (void)viewDidLoad { [super viewDid ...
分类:
其他好文 时间:
2020-07-13 23:04:54
阅读次数:
104
先说一下问题吧,今天遇到了一个奇怪的问题。一个界面通过消息通知刷新数据,断点跑了2次,感觉很奇怪。通过和公司小伙伴沟通发现是由于退出登录后再登录进去后发现此问题。我首先想到的就是此功能界面没有释放,但是查看界面处理没有特殊操作。里面想到就是因为切换rootViewController的时候原root ...
分类:
移动开发 时间:
2020-07-10 21:16:02
阅读次数:
144
//1、root控制器的创建 var rootCtrl =RootViewController() var root:UINavigationController =UINavigationController(rootViewController: rootCtrl) self.window!.r ...
分类:
移动开发 时间:
2019-03-28 13:44:38
阅读次数:
221
项目中需要实现点击按钮出现的视图全屏覆盖,呈半透明状态可以看到下面的视图? 解决方案: 绕了很多弯路原来可以使用模态弹出一个视图控制器 在iOS8之后只需要设置一个最新的属性 在iOS7或更低需要设置你的window.rootViewController.modalPresentationStyle ...
分类:
其他好文 时间:
2018-05-23 18:09:35
阅读次数:
412
1 2 3 4 5 6 7 8 9 func rootViewCon() -> UIViewController { var topVC = UIApplication.shared.keyWindow?.rootViewController while topVC?.presentedViewCo ...
分类:
移动开发 时间:
2018-03-12 10:24:52
阅读次数:
246
用继承自UINavigationController与UITabbarController 创建类,将前者设置为RootViewController,出现了一个问题,navigetionController的title不显示,在controller里面怎么设置都不显示,原因是这个样子的: title ...
分类:
移动开发 时间:
2017-10-29 21:57:53
阅读次数:
202
引擎版本为3.13,从入口开始一点点看。 iOS平台的入口在RootViewController.m文件的loadView方法中,app->run()开始。 run方法调用了一个名叫startMainLoop的方法,从名字就能知道这是要开启游戏主循环。 注意这个CADisplayLink,详细介绍看 ...
分类:
其他好文 时间:
2017-10-11 13:04:34
阅读次数:
285