2010-09-03 51 views
1

我想爲我的表中的某些行禁用UITableViewCellAccessoryDetailDisclosure按鈕。我似乎無法找到任何方法來做到這一點。我試過了:禁用UITableViewCellAccessory

cell.UITableViewCellAccessoryDetailDisclosureButton.enabled = NO; 

但沒有運氣。有誰知道如何做到這一點?

+0

我有同樣的問題。如果出現任何問題,我會通知你。 – 2011-02-17 19:31:48

回答

3

這不是您尋求的enabled屬性。你想要做的是指定在構建UITableViewCell對象時不應該公開任何附件細節。

因此,在你-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath,只需設置:

cell.accessoryType = UITableViewCellAccessoryNone; 

,這將擺脫附件該小區的。