Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ARCMacros.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,5 @@
#define SAFE_ARC_AUTORELEASE_POOL_END() [pool release];
#endif


#define FPPopoverWeakObject(o) __block __typeof__((__typeof__(o))o)
#define FPPopoverWeakSelf FPPopoverWeakObject(self)
3 changes: 1 addition & 2 deletions FPPopoverController.m
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ -(id)initWithViewController:(UIViewController*)viewController
_touchView.clipsToBounds = NO;
[self.view addSubview:_touchView];


__block typeof (self) bself = self;
FPPopoverWeakSelf bself = self;
[_touchView setTouchedOutsideBlock:^{
[bself dismissPopoverAnimated:YES];
}];
Expand Down