2012-06-25 168 views

回答

3

您可以使用其中的任何

[cell setSelectionStyle:UITableViewCellSelectionStyleNone]; 
//or 
[cell setSelectionStyle:UITableViewCellSelectionStyleGray]; 

也許這將幫助你

+0

謝謝大家,它的工作。 –

+0

你的歡迎:) – Abhishek

4

selectedBackgroundView

用作單元格的背景視圖時被選中。

@property(nonatomic, retain) UIView *selectedBackgroundView 

UITableViewCell Class Reference

做一個UIView,設定您所希望的任何backgroundColor,並將其設置爲selectedBackgroundView您的細胞。

相關問題