This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewDidLoad | |
{ | |
[super viewDidLoad]; | |
self.view.backgroundColor = [UIColor blackColor]; | |
//The following line creates a shimmer timing problem. | |
FBShimmeringView *shimmerView = [[FBShimmeringView alloc]init]; | |
//The following line works, but is unneccecery for common autolayout practices. |
NewerOlder