मैं एक ऐसी परियोजना पर काम कर रहा हूं, जिस पर मुझे एक विशेष सेल का चयन करना है।
-willDisplayCell
जब मैं किसी अन्य सेल पर क्लिक करता हूं, तो मैं किसी सेल का उपयोग करने का अनुमान लगा सकता हूं , लेकिन मैं इसे रद्द नहीं कर सकता।
- (void)tableView:(UITableView*)tableView
willDisplayCell:(UITableViewCell*)cell
forRowAtIndexPath:(NSIndexPath*)indexPath
{
AppDelegate_iPad *appDelegte =
(AppDelegate_iPad *)[[UIApplication sharedApplication] delegate];
if ([appDelegte.indexPathDelegate row] == [indexPath row])
{
[cell setSelected:YES];
}
}
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
AppDelegate_iPad *appDelegte =
(AppDelegate_iPad *)[[UIApplication sharedApplication] delegate];
NSIndexPath *indexpath1 = appDelegte.indexPathDelegate;
appDelegte.indexPathDelegate = indexPath;
[materialTable deselectRowAtIndexPath:indexpath1 animated:NO];
}
क्या आप मदद कर सकते हैं?