點擊任何處,出現提示:
代碼:
//點擊任何處出現sheet
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UIActionSheet * sheet = [[UIActionSheet alloc] initWithTitle:@"確定要清空圖片緩存?" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"確定" otherButtonTitles:nil, nil];
[sheet showInView:self.view];
}