我有一个照片库和一个操作表。图片来自滚动视图上的 URL。因此,操作表中有两个按钮 1) 锁定屏幕预览和 2) 主屏幕预览单击按钮,它将显示锁定屏幕的外观,并且在主屏幕按钮上它看起来像主壁纸。只是预览不要设置它们..我不知道它..请帮助我....
问问题
239 次
1 回答
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];
}
于 2012-10-27T13:37:40.617 回答