mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 23:55:39 +00:00
7115b448e8
Using the module import syntax "@import UIKit" results in a complaint from the compiler: > warning: use of '@import' in framework header is discouraged, > including this header requires -fmodules [-Watimport-in-framework-header] Use the regular #include syntax instead. Signed-off-by: Elias Naur <mail@eliasnaur.com>
9 lines
190 B
Objective-C
9 lines
190 B
Objective-C
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
#include <UIKit/UIKit.h>
|
|
|
|
@interface GioAppDelegate : UIResponder <UIApplicationDelegate>
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@end
|
|
|