问题描述
- 怎么清除变量的内容
-
怎么样清除数组和UIImageView的内容?不是删除数组和UIImageView本身,是清空其中的内容。
解决方案
批量清空数组内容,用removeAllObjects 方法:
[array removeAllObjects];
图片要设置Image属性清空:
imageView.image = nil;
时间: 2024-12-11 08:21:56
批量清空数组内容,用removeAllObjects 方法:
[array removeAllObjects];
图片要设置Image属性清空:
imageView.image = nil;