助けてください。
私はこれを持っていますtableview
。 セルがクリックされた場合、関数はセルの文字列値に依存します。次のようにする必要があります。
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (cell is equal to "Dog")
[show puppies]
else if (cell is equal to "Cat")
[show puppies]
}
ありがとう。