Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #51 from BranchMetrics/fix-bundle-path
Browse files Browse the repository at this point in the history
Fix bundle path
  • Loading branch information
aaustin committed Aug 7, 2016
2 parents 0324253 + 99c7d9c commit 4d21cbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Classes/BranchInviteBundleUtil.m
Expand Up @@ -7,11 +7,12 @@
//

#import "BranchInviteBundleUtil.h"
#import "BranchInviteViewController.h"

@implementation BranchInviteBundleUtil

+ (NSBundle *)branchInviteBundle {
NSString *branchInviteBundlePath = [[NSBundle mainBundle] pathForResource:@"BranchInvite" ofType:@"bundle"];
NSString *branchInviteBundlePath = [[NSBundle bundleForClass:[BranchInviteViewController class]] pathForResource:@"BranchInvite" ofType:@"bundle"];
NSBundle *branchInviteBundle = [NSBundle bundleWithPath:branchInviteBundlePath];

return branchInviteBundle;
Expand Down

0 comments on commit 4d21cbd

Please sign in to comment.