Skip to content

Instantly share code, notes, and snippets.

@aChase55
Created August 6, 2018 19:08
Show Gist options
  • Save aChase55/fe81a43a7f3394fa688a4c9f9bf94e0a to your computer and use it in GitHub Desktop.
Save aChase55/fe81a43a7f3394fa688a4c9f9bf94e0a to your computer and use it in GitHub Desktop.
#if defined(TARGET_IOS) || defined(TARGET_TVOS)
@import UIKit;
#define PlatformViewController UIViewController
#else
@import AppKit;
#define PlatformViewController NSViewController
#endif
// Our view controller
@interface MyViewController : PlatformViewController
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment