// Copyright 2015-present 650 Industries. All rights reserved. #import @class EXViewController; @class EXKernelAppRecord; @protocol EXViewControllerDelegate - (void)viewController:(EXViewController *)vc didNavigateAppToVisible:(EXKernelAppRecord *)appRecord; @end @interface EXViewController : UIViewController /** * Invoked from `viewDidLoad` */ - (void)createRootAppAndMakeVisible; @property (nonatomic, strong) UIViewController *contentViewController; @property (nonatomic, weak) id delegate; @end