1 2 3 4 5 6 7 8 9 10 11 12
| self.titleSearchBar = UISearchBar(frame: CGRectMake(0,0,200,44)); self.titleSearchBar.backgroundColor = UIColor.clearColor(); self.titleSearchBar.barStyle = UIBarStyle.BlackTranslucent; self.titleSearchBar.placeholder = "搜索你感兴趣的主题和回复"; for sView in self.titleSearchBar.subviews[0].subviews{ if(sView.isKindOfClass(NSClassFromString("UISearchBarBackground")!)){ sView.removeFromSuperview(); } } self.titleSearchBar.delegate = self; self.navigationItem.titleView = self.titleSearchBar;
|