Skip to content

Commit 38a8eae

Browse files
author
JmoVxia
committed
OC和Swift拆分为2个工程
1 parent e628f3e commit 38a8eae

File tree

1,059 files changed

+17611
-12322
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,059 files changed

+17611
-12322
lines changed

CLDemo-OC/CLDemo-OC.xcodeproj/project.pbxproj

Lines changed: 1767 additions & 0 deletions
Large diffs are not rendered by default.

CLDemo-OC/CLDemo-OC.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
uuid = "B33519EE-9CD6-4DD6-BCEE-FB6BE34D43FE"
4+
type = "1"
5+
version = "2.0">
6+
</Bucket>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>CLDemo-OC.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>16</integer>
11+
</dict>
12+
</dict>
13+
</dict>
14+
</plist>

CLDemo-OC/CLDemo-OC/AppDelegate.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//
2+
// AppDelegate.h
3+
// CLDemo-OC
4+
//
5+
// Created by Chen JmoVxia on 2021/6/21.
6+
//
7+
8+
#import <UIKit/UIKit.h>
9+
10+
@interface AppDelegate : UIResponder <UIApplicationDelegate>
11+
12+
@property (nonatomic, strong) UIWindow *window;
13+
14+
@end
15+

CLDemo-OC/CLDemo-OC/AppDelegate.m

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//
2+
// AppDelegate.m
3+
// CLDemo-OC
4+
//
5+
// Created by Chen JmoVxia on 2021/6/21.
6+
//
7+
8+
#import "AppDelegate.h"
9+
#import "CLTabbarController.h"
10+
11+
@interface AppDelegate ()
12+
13+
@end
14+
15+
@implementation AppDelegate
16+
17+
18+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
19+
CLTabbarController *tabbarController = [[CLTabbarController alloc] init];
20+
self.window.rootViewController = tabbarController;
21+
[self.window makeKeyAndVisible];
22+
return YES;
23+
}
24+
25+
26+
@end
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)