这就是 封装  iOS 启动页

iOS 启动广告页思路,直接 push,首页不出现,上海华新镇风味

PM 提了个需求,启动广告界面点击了, 就直接进,不需要闪一下主界面。

要这种

实现的思路,多 window 模式

一般的广告界面就是 Key Window 上面的遮罩(子视图)。
要从广告界面 push,自然广告界面就是一个控制器了。
提升广告界面的层级,才可以。

我提升到了 window 级别。
如果使用的是控制器, 单 window (就是系统的), 然后切换就是 [UIApplication sharedApplication].keyWindow.rootViewController = ...

两点考虑:
1, 切换即重新创建, 从广告到首页。
我希望首页早加载,就必须给首页一个 window 容器。
2,首页转登录,登录再转首页
之前项目用的是切 keyWindow 的 rootViewController, 然后首页就丢了,拿不到。登录逻辑中,新建一个,我觉得比较可惜。
使用多 window , 拿回首页,可以在内存上复用。


@interface AppDelegate 

//  主流程
@property (strong, nonatomic) UIWindow *window;
// 广告
@property (strong, nonatomic) UIWindow *adWindow;
// 登录
@property (strong, nonatomic) UIWindow *loginWindow;


@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    self.window = [[UIWindow alloc] init];
    self.window.frame = [UIScreen mainScreen].bounds;
    
    
    
    UITabBarController * tabBarController = [[UITabBarController alloc] init];
    tabBarController.view.backgroundColor = UIColor.redColor;
    self.window.rootViewController = tabBarController;
    
    
    self.adWindow = [[UIWindow alloc] init];
    self.adWindow.frame = [UIScreen mainScreen].bounds;
    self.adWindow.rootViewController = [[UINavigationController alloc] initWithRootViewController: [[AdvertiseViewController alloc] init]];;
    [self.adWindow makeKeyAndVisible];
    return YES;
}

采用了三个 window, 一个主流程,一个广告, 一个登录,
KeyAndVisible 的是广告 window.
( 项目原因,广告都是实时请求。不是市面上的异步缓存,下次使用。 华新镇风味)

问题就是如果广告倒计时三秒,用户没有点击,

注意事项:

需要在 Target 的 General 选项卡中, 指定 Main Interface 为空。
建议删除 main.storyboard.

因为启动的时候切换 window, 就不能走 main.storyboard 了.

launch_delete_main

未实现的思路

缺点:

没有转场动画 transition
内存管理, 因为用户看到的 window 只有一个。
广告业务处理完后,切换回首页 window, 就应该释放广告 window.
( 广告 window 是 appDelegate 的属性,appDelegate 是单例, 所以 appDelegate 的广告 window 属性,初始化后,会一直都存在)
在这个时机写, appDelegate.adWindow = nil, 就会黑光一闪。
这肯定是不行的。
需要在之后找地方释放,代码会乱一些。

产品说:不要这种

iOS 启动广告界面,一般是在 window 上添加子视图。

    UIWindow *window = [UIApplication sharedApplication].delegate.window;
    [window addSubview: self];

广告界面就是首页 rootViewController ( 或者其子 Controller )上面的遮罩。点击广告页,一般是通知首页的 topViewController push 出广告的内容控制器。

一般的 App 启动加载广告页面思路都是这么写的。 这篇不错。

这种思路挺好的,一般的广告界面的 link 是 deep link, 与 app 强交互,先把整个 app 的框架(首页)加载出来,再进入业务层。

大方

我看了一下喜马拉雅的效果,也觉得挺好的。

华新镇的产品经理很硬。

相关代码: https://github.com/BoxDengJZ/solution_launch_UI

其他技术点:

可以网络请求异步发起,下次使用,AFNetworking 的事情。
图片缓存策略,SDWebImage 的事情。







封装 ,除了 数据是 只读 的。
数据 通过 操作 修改。

还有 一种类的 层级关系。
对象 的 属性,不能 跨越 层级,直接访问到。
必须是, 一级一级 访问。修改

//self.orderDetailInfo.packageList[i].productList[j] = [OrderDetailProduct yy_modelWithDictionary: orderDetailProduct];

[HttpRequestManager getOrderDetailParams:requestDic success:^(id response, id data, NSString *Message) {
        [MBProgressHUD hideHUD];
        NSDictionary *responseDic = (NSDictionary *)data;
        OrderDetail * orderDetailInfo = [OrderDetail yy_modelWithDictionary: responseDic];
        self.orderDetailInfo = orderDetailInfo;
      //  NSInteger i = 0;
        NSMutableArray * tempOrders = [[NSMutableArray alloc] initWithCapacity: orderDetailInfo.packageList.count];
        for (OrderPackageList * orderPackageList in orderDetailInfo.packageList) {
            OrderPackageList * tempPackageList = orderPackageList;
         //   NSInteger j = 0;
            NSMutableArray * tempProducts = [[NSMutableArray alloc] initWithCapacity: orderPackageList.productList.count];
            for (NSDictionary * orderDetailProduct in orderPackageList.productList) {
                
                //self.orderDetailInfo.packageList[i].productList[j] = [OrderDetailProduct yy_modelWithDictionary: orderDetailProduct];
                OrderDetailProduct * tempDetailProduct = [OrderDetailProduct yy_modelWithDictionary: orderDetailProduct];
                [tempProducts addObject: tempDetailProduct];
              //  j++;
            }
            tempPackageList.productList = tempProducts;
            [tempOrders addObject: tempPackageList];
           // i++;
        }
        self.orderDetailInfo.packageList = tempOrders;
        [self.orderDetailTableView reloadData];







Mock ,
在 客户端 测试 Server 逻辑,
在 移动端 直接 修改 数据,
同样有 Mock 的 效果。

你可能感兴趣的:(这就是 封装  iOS 启动页)