RubyMotion の最新バージョンを使用しています。
RubyMotion のナビゲーション バーにカスタム背景画像を設定しようとしています。しかし、エラーが発生し続けます。
これはAppDelegateの私のコードです:
dashboardController = DashboardController.alloc.initWithNibName(nil, bundle: nil)
nav_controller = UINavigationController.alloc.initWithRootViewController(dashboardController)
image = UIImage.imageNamed('navbar/background_navbar.png')
nav_controller.appearance.setBackgroundImage(image, forBarMetrics:UIBarMetricsDefault)
これはエラーです:
*** Terminating app due to uncaught exception 'NoMethodError', reason: 'app_delegate.rb:10:in `application:didFinishLaunchingWithOptions:': undefined method `appearance' for #<DashboardController:0x6c4a9a0> (NoMethodError)