摘要: 注意这里是:Tab Bar 不是Tab Bar Controller. Tab bar是继承UIView,所以可以添加到ViewController里。是View就可以add到另一个View上去。Tab Bar Controller是新建View视图。XX.h 里需要定义UITabBar,并且要引用协议 UITabBarDelegate.@interface LoginViewController :UIViewController<UITabBarDelegate>{ UITabBar *tabbar;}@property (nonatomic, retain) UITabBar 阅读全文