Skip to content

Commit 00ad40f

Browse files
dotnet new ios
1 parent 7115dc1 commit 00ad40f

21 files changed

Lines changed: 317 additions & 4 deletions

dotnet/AppDelegate.cs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
namespace dotnet;
2+
3+
[Register ("AppDelegate")]
4+
public class AppDelegate : UIApplicationDelegate {
5+
public override bool FinishedLaunching (UIApplication application, NSDictionary? launchOptions)
6+
{
7+
// Override point for customization after application launch.
8+
return true;
9+
}
10+
11+
public override UISceneConfiguration GetConfiguration (UIApplication application, UISceneSession connectingSceneSession, UISceneConnectionOptions options)
12+
{
13+
// Called when a new scene session is being created.
14+
// Use this method to select a configuration to create the new scene with.
15+
// "Default Configuration" is defined in the Info.plist's 'UISceneConfigurationName' key.
16+
return new UISceneConfiguration ("Default Configuration", connectingSceneSession.Role);
17+
}
18+
19+
public override void DidDiscardSceneSessions (UIApplication application, NSSet<UISceneSession> sceneSessions)
20+
{
21+
// Called when the user discards a scene session.
22+
// If any sessions were discarded while the application was not running, this will be called shortly after 'FinishedLaunching'.
23+
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
24+
}
25+
}
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
{
2+
"images": [
3+
{
4+
"scale": "2x",
5+
"size": "20x20",
6+
"idiom": "iphone",
7+
"filename": "Icon40.png"
8+
},
9+
{
10+
"scale": "3x",
11+
"size": "20x20",
12+
"idiom": "iphone",
13+
"filename": "Icon60.png"
14+
},
15+
{
16+
"scale": "2x",
17+
"size": "29x29",
18+
"idiom": "iphone",
19+
"filename": "Icon58.png"
20+
},
21+
{
22+
"scale": "3x",
23+
"size": "29x29",
24+
"idiom": "iphone",
25+
"filename": "Icon87.png"
26+
},
27+
{
28+
"scale": "2x",
29+
"size": "40x40",
30+
"idiom": "iphone",
31+
"filename": "Icon80.png"
32+
},
33+
{
34+
"scale": "3x",
35+
"size": "40x40",
36+
"idiom": "iphone",
37+
"filename": "Icon120.png"
38+
},
39+
{
40+
"scale": "2x",
41+
"size": "60x60",
42+
"idiom": "iphone",
43+
"filename": "Icon120.png"
44+
},
45+
{
46+
"scale": "3x",
47+
"size": "60x60",
48+
"idiom": "iphone",
49+
"filename": "Icon180.png"
50+
},
51+
{
52+
"scale": "1x",
53+
"size": "20x20",
54+
"idiom": "ipad",
55+
"filename": "Icon20.png"
56+
},
57+
{
58+
"scale": "2x",
59+
"size": "20x20",
60+
"idiom": "ipad",
61+
"filename": "Icon40.png"
62+
},
63+
{
64+
"scale": "1x",
65+
"size": "29x29",
66+
"idiom": "ipad",
67+
"filename": "Icon29.png"
68+
},
69+
{
70+
"scale": "2x",
71+
"size": "29x29",
72+
"idiom": "ipad",
73+
"filename": "Icon58.png"
74+
},
75+
{
76+
"scale": "1x",
77+
"size": "40x40",
78+
"idiom": "ipad",
79+
"filename": "Icon40.png"
80+
},
81+
{
82+
"scale": "2x",
83+
"size": "40x40",
84+
"idiom": "ipad",
85+
"filename": "Icon80.png"
86+
},
87+
{
88+
"scale": "1x",
89+
"size": "76x76",
90+
"idiom": "ipad",
91+
"filename": "Icon76.png"
92+
},
93+
{
94+
"scale": "2x",
95+
"size": "76x76",
96+
"idiom": "ipad",
97+
"filename": "Icon152.png"
98+
},
99+
{
100+
"scale": "2x",
101+
"size": "83.5x83.5",
102+
"idiom": "ipad",
103+
"filename": "Icon167.png"
104+
},
105+
{
106+
"scale": "1x",
107+
"size": "1024x1024",
108+
"idiom": "ios-marketing",
109+
"filename": "Icon1024.png"
110+
}
111+
],
112+
"properties": {},
113+
"info": {
114+
"version": 1,
115+
"author": "xcode"
116+
}
117+
}
10.5 KB
Loading
1.13 KB
Loading
1.35 KB
Loading
1.47 KB
Loading
1.52 KB
Loading
352 Bytes
Loading
422 Bytes
Loading
537 Bytes
Loading

0 commit comments

Comments
 (0)