From 04f6b63e9366d3da05aae49f3c7b408c67a5ae46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B5=81=E5=B9=B4=E5=B0=8F=E4=B9=A6?= <30858010+huangqizai@users.noreply.github.com> Date: Wed, 3 Apr 2019 18:41:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E7=83=A7=E9=A5=BC=E6=B2=99=E5=B7=B4?= =?UTF-8?q?=E5=85=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AppDelegate.m | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AppDelegate.m diff --git a/AppDelegate.m b/AppDelegate.m new file mode 100644 index 0000000..5da6d6e --- /dev/null +++ b/AppDelegate.m @@ -0,0 +1,22 @@ +// +// AppDelegate.m +// YNPageViewController +// +// Created by ZYN on 2018/4/22. +// Copyright © 2018年 yongneng. All rights reserved. +// + +#import "AppDelegate.h" + +@implementation AppDelegate + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + + self.window.backgroundColor = [UIColor whiteColor]; + + NSLog(@"test1"); + + return YES; +} + +@end