-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathUIViewController+Container.h
More file actions
23 lines (15 loc) · 911 Bytes
/
Copy pathUIViewController+Container.h
File metadata and controls
23 lines (15 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// UIViewController+Container.h
// UIViewController+Container
//
// Created by Peter Paulis on 20.4.2013.
// Copyright (c) 2013 Peter Paulis. All rights reserved.
// min:60 - Building perfect apps - https://min60.com
#import <UIKit/UIKit.h>
@interface UIViewController (Container)
- (void)containerAddChildViewController:(UIViewController *)childViewController parentView:(UIView *)view __attribute__((deprecated(use containerAddChildViewController:toContainerView:)));
- (void)containerAddChildViewController:(UIViewController *)childViewController toContainerView:(UIView *)view useAutolayout:(BOOL)autolayout;
- (void)containerAddChildViewController:(UIViewController *)childViewController toContainerView:(UIView *)view;
- (void)containerAddChildViewController:(UIViewController *)childViewController;
- (void)containerRemoveChildViewController:(UIViewController *)childViewController;
@end