Skip to content

Instantly share code, notes, and snippets.

@erica
Last active April 13, 2016 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erica/3924b56759606b382338ee42dcbc5747 to your computer and use it in GitHub Desktop.
Save erica/3924b56759606b382338ee42dcbc5747 to your computer and use it in GitHub Desktop.
UIActionSheet.h:- (void)showFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated NS_AVAILABLE_IOS(3_2);
UIActionSheet.h:- (void)showFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated NS_AVAILABLE_IOS(3_2);
UIActionSheet.h:- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated;
UIAlertView.h:- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated;
UIApplication.h:- (void)setStatusBarOrientation:(UIInterfaceOrientation)interfaceOrientation animated:(BOOL)animated NS_DEPRECATED_IOS(2_0, 9_0, "Explicit setting of the status bar orientation is more limited in iOS 6.0 and later") __TVOS_PROHIBITED;
UIApplication.h:- (void)setStatusBarStyle:(UIStatusBarStyle)statusBarStyle animated:(BOOL)animated NS_DEPRECATED_IOS(2_0, 9_0, "Use -[UIViewController preferredStatusBarStyle]") __TVOS_PROHIBITED;
UICollectionView.h:- (void)selectItemAtIndexPath:(nullable NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UICollectionViewScrollPosition)scrollPosition;
UICollectionView.h:- (void)deselectItemAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated;
UICollectionView.h:- (void)setCollectionViewLayout:(UICollectionViewLayout *)layout animated:(BOOL)animated completion:(void (^ __nullable)(BOOL finished))completion NS_AVAILABLE_IOS(7_0);
UICollectionView.h:- (void)scrollToItemAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UICollectionViewScrollPosition)scrollPosition animated:(BOOL)animated;
UIDocumentInteractionController.h:- (BOOL)presentOptionsMenuFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated;
UIDocumentInteractionController.h:- (BOOL)presentOptionsMenuFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated;
UIDocumentInteractionController.h:- (BOOL)presentPreviewAnimated:(BOOL)animated;
UIDocumentInteractionController.h:- (BOOL)presentOpenInMenuFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated;
UIDocumentInteractionController.h:- (BOOL)presentOpenInMenuFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated;
UIDocumentInteractionController.h:- (void)dismissPreviewAnimated:(BOOL)animated;
UIDocumentInteractionController.h:- (void)dismissMenuAnimated:(BOOL)animated;
UIMenuController.h:- (void)setMenuVisible:(BOOL)menuVisible animated:(BOOL)animated;
UINavigationBar.h:- (void)pushNavigationItem:(UINavigationItem *)item animated:(BOOL)animated;
UINavigationBar.h:- (void)setHidesBackButton:(BOOL)hidesBackButton animated:(BOOL)animated __TVOS_PROHIBITED;
UINavigationBar.h:- (void)setLeftBarButtonItems:(nullable NSArray<UIBarButtonItem *> *)items animated:(BOOL)animated NS_AVAILABLE_IOS(5_0);
UINavigationBar.h:- (void)setRightBarButtonItems:(nullable NSArray<UIBarButtonItem *> *)items animated:(BOOL)animated NS_AVAILABLE_IOS(5_0);
UINavigationBar.h:- (void)setLeftBarButtonItem:(nullable UIBarButtonItem *)item animated:(BOOL)animated;
UINavigationBar.h:- (void)setRightBarButtonItem:(nullable UIBarButtonItem *)item animated:(BOOL)animated;
UINavigationController.h:- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated;
UINavigationController.h:- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated;
UINavigationController.h:- (void)setToolbarItems:(nullable NSArray<UIBarButtonItem *> *)toolbarItems animated:(BOOL)animated NS_AVAILABLE_IOS(3_0) __TVOS_PROHIBITED;
UIPageViewController.h:- (void)setViewControllers:(nullable NSArray<UIViewController *> *)viewControllers direction:(UIPageViewControllerNavigationDirection)direction animated:(BOOL)animated completion:(void (^ __nullable)(BOOL finished))completion;
UIPopoverController.h:- (void)setContentViewController:(UIViewController *)viewController animated:(BOOL)animated;
UIPopoverController.h:- (void)setPopoverContentSize:(CGSize)size animated:(BOOL)animated;
UIPopoverController.h:- (void)presentPopoverFromRect:(CGRect)rect inView:(UIView *)view permittedArrowDirections:(UIPopoverArrowDirection)arrowDirections animated:(BOOL)animated;
UIPopoverController.h:- (void)presentPopoverFromBarButtonItem:(UIBarButtonItem *)item permittedArrowDirections:(UIPopoverArrowDirection)arrowDirections animated:(BOOL)animated;
UIPopoverController.h:- (void)dismissPopoverAnimated:(BOOL)animated;
UIPrintInteractionController.h:- (void)dismissAnimated:(BOOL)animated;
UIPrinterPickerController.h:- (void)dismissAnimated:(BOOL)animated;
UIProgressView.h:- (void)setProgress:(float)progress animated:(BOOL)animated NS_AVAILABLE_IOS(5_0);
UIScrollView.h:- (void)setZoomScale:(CGFloat)scale animated:(BOOL)animated NS_AVAILABLE_IOS(3_0);
UIScrollView.h:- (void)zoomToRect:(CGRect)rect animated:(BOOL)animated NS_AVAILABLE_IOS(3_0);
UISearchBar.h:- (void)setShowsCancelButton:(BOOL)showsCancelButton animated:(BOOL)animated NS_AVAILABLE_IOS(3_0) __TVOS_PROHIBITED;
UISegmentedControl.h:- (void)insertSegmentWithImage:(nullable UIImage *)image atIndex:(NSUInteger)segment animated:(BOOL)animated;
UISegmentedControl.h:- (void)removeSegmentAtIndex:(NSUInteger)segment animated:(BOOL)animated;
UITabBarController.h:- (void)setViewControllers:(NSArray<__kindof UIViewController *> * __nullable)viewControllers animated:(BOOL)animated;
UITableView.h:- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;
UITableView.h:- (void)scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;
UITableView.h:- (void)setEditing:(BOOL)editing animated:(BOOL)animated;
UITableView.h:- (void)selectRowAtIndexPath:(nullable NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition;
UITableView.h:- (void)deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated;
UITableViewCell.h:- (void)setEditing:(BOOL)editing animated:(BOOL)animated;
UIViewController.h: dismissModalViewControllerAnimated: The completion handler, if provided, will be invoked after the presented
UIViewController.h:- (void)presentViewController:(UIViewController *)viewControllerToPresent animated: (BOOL)flag completion:(void (^ __nullable)(void))completion NS_AVAILABLE_IOS(5_0);
UIViewController.h:- (void)dismissViewControllerAnimated: (BOOL)flag completion: (void (^ __nullable)(void))completion NS_AVAILABLE_IOS(5_0);
UIViewController.h:- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated NS_DEPRECATED_IOS(2_0, 6_0) __TVOS_PROHIBITED;
UIViewController.h:- (void)dismissModalViewControllerAnimated:(BOOL)animated NS_DEPRECATED_IOS(2_0, 6_0) __TVOS_PROHIBITED;
UIViewController.h:- (void)beginAppearanceTransition:(BOOL)isAppearing animated:(BOOL)animated __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_5_0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment