2013-12-17 84 views

回答

1

很簡單:

// 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]; 

..... 
-2

我認爲蘋果的文檔是最好的瞭解iOS developent理解。 please check this link

+0

我正在努力解釋這種反應;你能更清楚一點嗎? – bacar

+0

您應該使用tableview實例而不是scopebar,並在表格視圖單元格中顯示圖像。這(https://www.cocoacontrols.com/controls/gzcountrytableview)將幫助你..thenks –