#Xcode Base Localization Cheat Sheet
If you are using Base.lproj to localize your Storyboards in Xcode (and you should!), you need to work with specific attributes for the IB objects that are not always equal to the real UIKit objects in code.
UILabel.text→IBUILabel.textUIButton.title→IBUIButton.normalTitleUINavigationItem.title→IBUINavigationItem.titleUITabBarItem.title→IBUITabBarItem.title[UISegmentedControl setTitle:forSegmentAtIndex:]→IBUISegmentedControl.segmentTitles[n]- Title of a section in a static UITableView →
IBUITableViewSection.headerTitle - Footer of a section in a static UITableView →
IBUITableViewSection.footerTitle
This is a work in progress!