Skip to content

Instantly share code, notes, and snippets.

View paulrehkugler's full-sized avatar

Paul Rehkugler paulrehkugler

View GitHub Profile
- (id)initWithCancelButtonTitle:(NSString *)cancelTitle otherButtonTitles:(NSString *)otherButtonTitles, ... {
if (self = [super init]) {
NSMutableArray *buttonTitles = [[NSMutableArray alloc] init];
BRYEachArgumentBlock eachArgumentBlock = ^(NSString *title) {
[buttonTitles addObject:title];
};
BRYVarArgs(eachArgumentBlock, otherButtonTitles);
}