代码笔记清除图片缓存UIActionSheet
Posted 菜鸟and小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记清除图片缓存UIActionSheet相关的知识,希望对你有一定的参考价值。
一,效果图。
二,代码。
RootViewController.m
//点击任何处出现sheet
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UIActionSheet * sheet = [[UIActionSheet alloc] initWithTitle:@"确定要清空图片缓存?" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"确定" otherButtonTitles:nil, nil];
[sheet showInView:self.view];
}
以上是关于代码笔记清除图片缓存UIActionSheet的主要内容,如果未能解决你的问题,请参考以下文章