• 大小: 152KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-03
  • 语言: 其他
  • 标签: 多层蒙版  

资源简介

我们平时使用App的时候, 经常在第一次使用的时候, 会有类似”新手教程”之类的东西, 来引导我们应该如何使用这个App。 但是这个”新手教程”不同于常规的引导页(引导页指第一次打开App时候, 弹出的那种介绍视图。 他是静态的, 不需要与用户交互, 可以直接一页页翻, 或者直接跳过。)所谓的”新手教程”, 就是按照App的提示, 一步步跟着完成。

资源截图

代码片段和文件信息

//
//  AppDelegate.m
//  mengban
//
//  Created by ios2 on 2018/9/3.
//  Copyright © 2018年 vista. All rights reserved.
//

#import “AppDelegate.h“
#import “ViewController.h“
@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc]initWithframe:[UIScreen mainScreen].bounds];
    ViewController *vc=[[ViewController alloc]init];
    self.window.rootViewController = vc;
    [self.window makeKeyAndVisible];
    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks disable timers and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources save user data invalidate timers and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution this method is called instead of applicationWillTerminate: when the user quits.
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background optionally refresh the user interface.
}


- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}


@end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-03 16:13  mengban\
     目录           0  2018-09-03 16:13  mengban\mengbanTests\
     文件         891  2018-09-03 16:13  mengban\mengbanTests\mengbanTests.m
     目录           0  2018-09-03 16:35  __MACOSX\
     目录           0  2018-09-03 16:35  __MACOSX\mengban\
     目录           0  2018-09-03 16:35  __MACOSX\mengban\mengbanTests\
     文件         171  2018-09-03 16:13  __MACOSX\mengban\mengbanTests\._mengbanTests.m
     文件         701  2018-09-03 16:13  mengban\mengbanTests\Info.plist
     目录           0  2018-09-03 16:13  mengban\mengbanUITests\
     文件        1200  2018-09-03 16:13  mengban\mengbanUITests\mengbanUITests.m
     目录           0  2018-09-03 16:35  __MACOSX\mengban\mengbanUITests\
     文件         171  2018-09-03 16:13  __MACOSX\mengban\mengbanUITests\._mengbanUITests.m
     文件         701  2018-09-03 16:13  mengban\mengbanUITests\Info.plist
     目录           0  2018-09-03 16:34  mengban\mengban\
     文件         269  2018-09-03 16:13  mengban\mengban\AppDelegate.h
     目录           0  2018-09-03 16:35  __MACOSX\mengban\mengban\
     文件         171  2018-09-03 16:13  __MACOSX\mengban\mengban\._AppDelegate.h
     目录           0  2018-09-03 16:19  mengban\mengban\Assets.xcassets\
     目录           0  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_01.imageset\
     文件         304  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_01.imageset\Contents.json
     文件       12501  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_01.imageset\meng_01.png
     目录           0  2018-09-03 16:13  mengban\mengban\Assets.xcassets\AppIcon.appiconset\
     文件        1590  2018-09-03 16:13  mengban\mengban\Assets.xcassets\AppIcon.appiconset\Contents.json
     目录           0  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_04.imageset\
     文件       13056  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_04.imageset\meng_04.png
     文件         304  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_04.imageset\Contents.json
     文件          62  2018-09-03 16:19  mengban\mengban\Assets.xcassets\Contents.json
     目录           0  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_03.imageset\
     文件        8979  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_03.imageset\meng_03.png
     文件         304  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_03.imageset\Contents.json
     目录           0  2018-09-03 16:19  mengban\mengban\Assets.xcassets\meng_02.imageset\
............此处省略130个文件信息

评论

共有 条评论

相关资源