@@ -70,7 +70,7 @@ long long lastPercentage; | |||
NSLog(@"Kai: Updating cell: %@ for device:%@", cell, device); | |||
} else if(![self.displayingDevices containsObject:deviceName]) { | |||
KAIBatteryCell *newCell = [[KAIBatteryCell alloc] initWithFrame:CGRectMake(0, y, self.frame.size.width, bannerHeight) device:device]; | |||
[self.superview addSubview:newCell]; | |||
[self addSubview:newCell]; | |||
[self.displayingDevices addObject:deviceName]; | |||
//y+=bannerHeight + spacing; | |||
NSLog(@"Kai: Added cell: %@ for device:%@", cell, device); |
@@ -85,7 +85,7 @@ NSMutableArray *deviceInstances; | |||
} else if(bannerAlign==3) { //right | |||
[blank.rightAnchor constraintEqualToAnchor:self.rightAnchor constant:horizontalOffset].active = YES; | |||
} | |||
[blank.topAnchor constraintEqualToAnchor:self.topAnchor constant:self.frame.origin.y].active = YES; | |||
[blank.topAnchor constraintEqualToAnchor:self.topAnchor].active = YES; | |||
[blank.widthAnchor constraintEqualToConstant:((self.frame.size.width) + bannerWidthFactor)].active = YES; | |||
[blank.heightAnchor constraintEqualToConstant:bannerHeight].active = YES; | |||