redribben

the alloc location

Feb 9th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @interface MainViewController () <AVAudioSessionDelegate>
  2. @property (nonatomic) BOOL showPlayButton;
  3. @property (copy, nonatomic) NSString *radioLocationSelected;
  4.  
  5. @end
  6.  
  7. @implementation MainViewController {
  8.     BMHttpAudioStreamManager* streamManager;
  9.     BMDirectorySetUp* directoryManager;
  10. //    BMAudioSessionController* audioSessionManager;
  11. }
  12.  
  13. @synthesize menuButton;
  14.  
  15.  
  16.  
  17. - (instancetype) initWithCoder:(NSCoder *)aDecoder {
  18.     if (self = [super initWithCoder:aDecoder]) {
  19.         streamManager = [[BMHttpAudioStreamManager alloc] init];
  20.         directoryManager = [[BMDirectorySetUp alloc] init];
  21. //        audioSessionManager = [[BMAudioSessionController alloc] init];
  22.     }
  23.     return self;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment