This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
@interface InviteManager : NSObject | |
- (void)inviteClients; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Suppose we are in some ViewController | |
- (void)viewDidLoad | |
{ | |
[super viewDidLoad]; | |
NSArray *first = @[@(1), @(2), @(3)]; | |
NSArray *second = @[first, @(4)]; | |
NSArray *third = @[@(6), @(7)]; | |