redribben

instancetype

Oct 29th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Allocate and initialize other class objects and assign to the instance variable of ViewController
  2. - (instancetype) initWithCoder:(NSCoder *)aDecoder {
  3.     if (self = [super initWithCoder:aDecoder]) {
  4.         streamManager = [[BMHttpAudioStreamManager alloc] init];
  5.         directoryManager = [[BMDirectorySetUp alloc] init];
  6.     }
  7.     return self;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment