NSString *s =@"1445416710";
NSDate *d = [NSDate dateWithTimeIntervalSince1970:[s floatValue]];
NSDateFormatter *dateformatter=[[NSDateFormatter alloc] init];
[dateformatter setDateFormat:@"yyyy年MM月dd日 HH:mm:ss"];
NSString * dateStr=[dateformatter stringFromDate:d];
NSLog(@"%@",dateStr);
//将父视图上的所有元素加到一个数组里面进行遍历
for (UIView *view in self.view.subviews) {
//从父视图上,判断是不是这个类型的元素
if ([view isKindOfClass:[UICollectionViewCell class]]) {
//如果是则从父视图上删除
[view removeFromSuperview];
}
}