I am building a Rubymotion app and I am customizing the tabBar. I have managed to put a custom image as a background of the tabBar but now I need to set individual images to each tab. One for when it is pressed and one for when it is not.
I am following the guide (for objective-c) at NSScreencasts.com and the show notes says I should use this code. But when I try it in Ruby (which I think is correct) I get an error.
In Objective-C:
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
self.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Friends"
image:nil
tag:0];
[self.tabBarItem setFinishedSelectedImage:[UIImage imageNamed:@"tabbar-activity-selected.png"]
withFinishedUnselectedImage:[UIImage imageNamed:@"tabbar-activity.png"]];
}
return self;
}
My Ruby code:
class FirstController < UIViewController
def viewDidLoad
super
view.backgroundColor = UIColor.whiteColor
self.tabBarItem = UITabBarItem.alloc.initWithTitle('Friends', image: nil, tag: 0)
self.tabBarItem.setFinishedSelectedImage(UIImage.imageNamed('tabitem_selected.png'))
self.tabBarItem.withFinishedUnselectedImage(UIImage.imageNamed('tabitem.png'))
end
end
The error:
first_controller.rb:8:in `viewDidLoad': undefined method `setFinishedSelectedImage' for #<UITabBarItem:0x6b71670> (NoMethodError)
from app_delegate.rb:7:in `application:didFinishLaunchingWithOptions:'
2012-11-16 14:45:56.924 custom_tabbar[45679:f803] *** Terminating app due to uncaught exception 'NoMethodError', reason: 'first_controller.rb:8:in `viewDidLoad': undefined method `setFinishedSelectedImage' for #<UITabBarItem:0x6b71670> (NoMethodError)
Also. Is it really correct to set this code in the viewDidLoad?