Skip to content

Commit

Permalink
Merge pull request #62 from Citrrus/feature/nib_free_usage
Browse files Browse the repository at this point in the history
Add initWithFrame: implementation to MBContactPicker to support usage ou...
  • Loading branch information
mhupman committed Feb 7, 2014
2 parents a7d3975 + 1b36238 commit 76d71da
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions MBContactPicker/MBContactPicker.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ @interface MBContactPicker()

@implementation MBContactPicker

- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self setup];
}
return self;
}

- (void)awakeFromNib
{
[self setup];
Expand Down

0 comments on commit 76d71da

Please sign in to comment.