Skip to content

Commit

Permalink
migration to modern objc
Browse files Browse the repository at this point in the history
  • Loading branch information
Adar Porat committed Aug 8, 2013
1 parent e6ccc4b commit b45d8c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KKProgressToolbar/KKProgressToolbar.m
Expand Up @@ -53,7 +53,7 @@ - (id)initWithFrame:(CGRect)frame
self.autoresizingMask = UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleWidth;
self.translucent = YES;
self.barStyle = UIBarStyleBlackTranslucent;
self.items = [NSArray arrayWithObjects:activityIndicatorItem, flexSpace, statusItem, flexSpace, self.stopButtonItem, nil];
self.items = @[activityIndicatorItem, flexSpace, statusItem, flexSpace, self.stopButtonItem];

}
return self;
Expand Down

0 comments on commit b45d8c2

Please sign in to comment.