Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. //
  2. // StoryboardBackedViewController.h
  3. // Fabric
  4. //
  5. // Created by Javier Soto on 9/6/15.
  6. // Copyright © 2015 Fabric. All rights reserved.
  7. //
  8.  
  9. #import <UIKit/UIKit.h>
  10.  
  11. NS_ASSUME_NONNULL_BEGIN
  12.  
  13. @interface StoryboardBackedViewController : UIViewController
  14.  
  15. // This method returns a different instance of self, so properties on self must be set *after* calling this initializer.
  16. - (instancetype)initWithStoryboardIdentifier:(NSString *)storyboardIdentifier NS_DESIGNATED_INITIALIZER;
  17.  
  18. #pragma mark - Unavailable
  19.  
  20. - (instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil NS_UNAVAILABLE;
  21. - (_Nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
  22. - (instancetype)init NS_UNAVAILABLE;
  23.  
  24. @end
  25.  
  26. NS_ASSUME_NONNULL_END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement