Tag: 匿名

UILabel(CALayer)正在使用大量的虚拟内存

在Xcode and Instruments我使用大量的虚拟内存(匿名VM)来看UILabel (CALayer) )。 我发现每个UILabel大约有235 KB的虚拟内存。 我认为这可能是iOS 7.1或7.1.1的一个新问题。 这是预期的吗? 我创build了一个简单的程序,创build500 UILabels和Instruments显示使用115MB的内存。 在大约1500个标签上,应用程序被操作系统终止。 for (int i = 0; i < 500; i++) { index = (int)[self.items count]; index++; frame = CGRectMake(10.0, 20, 300.0, 50.0); UILabel *newLabel = [[UILabel alloc] initWithFrame:frame]; newLabel.text = [NSString stringWithFormat:@"This is text for label: %d", index]; newLabel.backgroundColor = [UIColor whiteColor]; [self.view […]