GRMustache
GRMustache copied to clipboard
Crashes on OS X 10.8
There is a crash in GRMustacheImplicitIteratorExpression.m when running on OS X 10.8. It seems that the issue is related to the initialize function in that simply modifying the function:
- (void)initialize { instance = [[self alloc] init]; }
into:
- (void)load { instance = [[self alloc] init]; }
would make it wok on OS X 10.8
Hello @linhj07
I'm assuming you have a threading issue, but I'm not sure. Do you have a crash log to share, or any other information?