我有一个照片库和一张活动表。图像来自滚动视图中的URL。所以,行动表中有两个按钮 1)锁定屏幕预览和2)主屏幕预览 点击按钮,它将显示锁屏的外观,以及主屏幕按钮,它将看起来像家庭壁纸。 只是预览不设置它们.. 我对它没有任何想法..请帮助我......
答案 0 :(得分:0)
如果我理解你这样做:
创建PreviewViewController并在viewWillAppera委托中设置:
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
[imageView setImage:[UIImage imageNamed:@"image.png"]];
[self.view addSubview:imageView];
如果要调用预览,请在ActionSheet委托方法中使用它:
- (void) actionSheet:(UIActionSheet*) actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex {
if(buttonIndex == 0) {
[self presentViewController:preview animated:YES completion:nil];
}
}
您还可以在PreviewViewController中添加取消按钮,并在单击时关闭视图:
-(IBAction)cancelButtonTaped:(id)sender {
[self dismissModalViewControllerAnimated:YES];
}