$ {editor} app/app_delegate.rb class AppDelegate def application(application, didFinishLaunchingWithOptions:launchOptions) true @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds).tap do |w| geo_view_controller = GeoViewController.new w.rootViewController = geo_view_controller w.makeKeyAndVisible end end end $ {editor} app/controller/geo_view_controller.rb class GeoViewController <

