我也不知道我這個方式是不是很爛,遇到問題是這樣~
首先我因為要用Launcher效果,所以繼承了TTViewController,結果造成切換view時,view下方如圖1,紅色區塊的功能完全無法被點擊,所以去看了TTViewController.m之後,就想說我重新定義frame的長寬,結果沒想到就解決問題了...
@interface LauncherViewTestController : TTViewController
TTLauncherView* _launcherView;
UIToolbar *first_toolbar;
UISearchBar *searchBar;
UILabel *title_label;
UIToolbar *states_toolbar;
}
@property (nonatomic,retain) UISearchBar *searchBar;
@property (nonatomic,retain) UIToolbar *first_toolbar;
@property (nonatomic,retain) UIToolbar *states_toolbar;
@property (nonatomic,retain) UILabel *title_label;