私は RubyMotion と iOS 開発に非常に慣れていないので、この groupmeのようなトップ バーをアプリに配置し、その中央にアイコンを配置したいと考えています。
それ、どうやったら出来るの?ライブラリとは何ですか?どうすればビューにアタッチできますか?
現在、私の中にコードがありますapp_delegate.rb
:
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
@window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
tabbar = UITabBarController.alloc.init
tabbar.viewControllers = [
ProductMapController.alloc.init,
SearchController.alloc.init,
NewProductController.alloc.init,
FeedController.alloc.init,
UserDetailsController.alloc.init
]
tabbar.selectedIndex = 0
@window.rootViewController = UINavigationController.alloc.initWithRootViewController(tabbar)
@window.rootViewController.wantsFullScreenLayout = true
@window.makeKeyAndVisible
true
end
end
ありがとうございます。