I have a UITableView
and I want there to link to the Apple website when the user taps the first cell or row in the UITableView
. This is my code:
- (void)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath == 0) {
}
}