2
對於UISearchBar
的範圍欄,我想設置圖像而不是標題來識別不同的範圍。我發現只有scopeButtonTitles
方法才能在UISearchBar
類別參考中設置標題。有沒有辦法爲示波器設置圖像?如何將圖像設置爲UISearchBar的範圍欄項目?
對於UISearchBar
的範圍欄,我想設置圖像而不是標題來識別不同的範圍。我發現只有scopeButtonTitles
方法才能在UISearchBar
類別參考中設置標題。有沒有辦法爲示波器設置圖像?如何將圖像設置爲UISearchBar的範圍欄項目?
很簡單:
// use Appearance proxy:
id temp = [UISegmentedControl appearanceWhenContainedIn:[UISearchBar class], nil];
UIImage * img = [UIImage imageNamed:@"my_img1"];
[temp setImage:img forSegmentAtIndex: 0];
img = [UIImage imageNamed:@"my_img2"];
[temp setImage:img forSegmentAtIndex: 1];
.....
我認爲蘋果的文檔是最好的瞭解iOS developent理解。 please check this link
我正在努力解釋這種反應;你能更清楚一點嗎? – bacar
您應該使用tableview實例而不是scopebar,並在表格視圖單元格中顯示圖像。這(https://www.cocoacontrols.com/controls/gzcountrytableview)將幫助你..thenks –