我有工作代码,并希望从中获得更好的性能,因为如果传递更多数据,它会得到很好的加载。但我不知道我还能做些什么。
输入:带有 logUnits 的数组,每个都包含一个日志事件视图,例如“2013-01-16 15:13:00 Hello”和时间数组 - 此数组仅包含我们有日志事件的时间 (2013-01-02,2013 -01-09 等)
输出:视图数组,其中每个视图包含同一天的日志单元。
我还可能需要按事件类型过滤日志单元。
这是我如何做到的。
NSMutableArray *views = [[NSMutableArray alloc] initWithCapacity:times.count];
@autoreleasepool {
for(int x = 0; x != times.count; x++)
{
UIView *foo = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 400)];
foo.backgroundColor = [UIColor clearColor];
int f = 0;
int h = 0;
for(int i = 0; i != objectArray.count; i++)
{
@autoreleasepool
{
LogUnit *unit = [objectArray objectAtIndex:i];
if([[times objectAtIndex:x] isEqual:[unit realTime]])
{
if(![[foo subviews] containsObject:unit.view]) // Look if unit was already added
{
NSString *number = [NSString stringWithFormat:@"SortLog%i ",[[NSUserDefaults standardUserDefaults] stringForKey:@"ObjectNumber"].intValue];
NSString *comp = [[NSUserDefaults standardUserDefaults] stringForKey:number];
if([[unit status] isEqualToString:comp] || [comp isEqualToString:NULL] || comp == NULL)
{
if([unit getEvent] != NULL)
{
unit.view.frame = CGRectMake(unit.view.frame.origin.x, f * unit.view.frame.size.height + 30, unit.view.frame.size.width, unit.view.frame.size.height);
[foo addSubview:unit.view];
f++;
h = unit.view.frame.size.height * f;
}
}
}
}
}
}
foo.frame = CGRectMake(0,0, 320, h + 30 );
h = 0;
[views addObject:foo];
}
我猜这最糟糕的事情是循环中的循环,对于每个外部循环,我必须重新运行所有 logUnit。但不知道我还能如何做到这一点。也许有一种方法可以称为“选择时间等于[单位实时]的单位”有什么想法吗?