NSStoryboard.inc 798 B

12345678910111213141516171819202122232425262728
  1. { Parsed from AppKit.framework NSStoryboard.h }
  2. {$ifdef TYPES}
  3. type
  4. NSStoryboardPtr = ^NSStoryboard;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. NSStoryboard = objcclass external (NSObject)
  9. private
  10. _privateStoryboardData: id;
  11. _storyboardFlags: bitpacked record
  12. case byte of
  13. 0: (_anonBitField__storyboardFlags0: cuint);
  14. 1: (
  15. reserved: 0..((1 shl 32)-1);
  16. );
  17. end;
  18. public
  19. class function storyboardWithName_bundle (name: NSString; storyboardBundleOrNil: NSBundle): instancetype; message 'storyboardWithName:bundle:';
  20. function instantiateInitialController: id; message 'instantiateInitialController';
  21. function instantiateControllerWithIdentifier (identifier: NSString): id; message 'instantiateControllerWithIdentifier:';
  22. end;
  23. {$endif}