mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
d97f7f9093
The Gio GioAppDelegate created the GioViewController programmatically. When using gogio's -buildmode=archive users may want to use a different method (for example storyboards) but there can only be one app delegate. Move the GioAppDelegate to gogio's exe buildmode, and export the GioViewController for embedding use. Signed-off-by: Elias Naur <mail@eliasnaur.com>
7 lines
125 B
Objective-C
7 lines
125 B
Objective-C
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
#include <UIKit/UIKit.h>
|
|
|
|
@interface GioViewController : UIViewController
|
|
@end
|