我在我的應用程序中使用TableView,在彈出查看窗口時單擊tabel單元格時,表格單元格中的所有內容都應顯示在彈出窗口中在觀看所以PLZ建議我該怎麼辦?如何在ipad中顯示彈出窗口單元格中的tableview單元格
我有一些示例代碼,下面哪個是不工作..所以建議與代碼我希望單元格中的所有內容顯示在彈出視圖。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIView *aView = [[UIView alloc] init];
UIPopoverController *popoverController = [[UIPopoverController alloc]
initWithContentViewController:aView];
popoverController.popoverContentSize = CGSizeMake(320, 416);
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[popoverController presentPopoverFromRect:cell.bounds inView:cell.contentView
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
THX了很多它的工作... – crazy2431
@ 7KV7:+1偉大的答案..! :] –
@ParthBhatt:謝謝。 – visakh7