Quote:
Originally Posted by moezzz
try to use .png file where possible...
|
Hi ,buddy
try this :
- (void)tableView

UITableView *)tableView didSelectRowAtIndexPath

NSIndexPath *)indexPath {
// Navigation logic may go here. Create and push another view controller.
if(childViewerController==nil)
childViewerController= [[ImageViewerViewController alloc] initWithNibName:@"ImageViewer" bundle:nil];
WebMedicalImageViewerAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.navController pushViewController:childViewerController animated:YES];
UIImage *image = [UIImage imageNamed:@"images.jpg"];
childViewerController.imageView.image=image;
}