File tree 3 files changed +6
-6
lines changed
KeyboardLayoutGuideExample
KeyboardLayoutGuideExample
KeyboardLayoutGuideExample.xcodeproj
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
archiveVersion = 1;
4
4
classes = {
5
5
};
6
- objectVersion = 52 ;
6
+ objectVersion = 54 ;
7
7
objects = {
8
8
9
9
/* Begin PBXBuildFile section */
328
328
);
329
329
PRODUCT_BUNDLE_IDENTIFIER = com.freshos.KeyboardLayoutGuideExample;
330
330
PRODUCT_NAME = "$(TARGET_NAME)";
331
- SWIFT_VERSION = 5 .0;
331
+ SWIFT_VERSION = 6 .0;
332
332
TARGETED_DEVICE_FAMILY = "1,2";
333
333
};
334
334
name = Debug;
347
347
);
348
348
PRODUCT_BUNDLE_IDENTIFIER = com.freshos.KeyboardLayoutGuideExample;
349
349
PRODUCT_NAME = "$(TARGET_NAME)";
350
- SWIFT_VERSION = 5 .0;
350
+ SWIFT_VERSION = 6 .0;
351
351
TARGETED_DEVICE_FAMILY = "1,2";
352
352
};
353
353
name = Release;
Original file line number Diff line number Diff line change 8
8
9
9
import UIKit
10
10
11
- @UIApplicationMain
11
+ @main
12
12
class AppDelegate : UIResponder , UIApplicationDelegate {
13
13
14
14
var window : UIWindow ?
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ class InvertedButton: UIButton {
36
36
}
37
37
}
38
38
39
- override func awakeFromNib ( ) {
40
- super. awakeFromNib ( )
39
+ required init ? ( coder : NSCoder ) {
40
+ super. init ( coder : coder )
41
41
updateBackgroundColor ( )
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments