Skip to content

Commit

Permalink
Update the doc with a warning against issue #70
Browse files Browse the repository at this point in the history
  • Loading branch information
groue committed Feb 27, 2014
1 parent 76c00b6 commit eac53f1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Guides/runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,10 @@ NSString *rendering = [GRMustacheTemplate renderObject:data
If you do not care about compatibility, you can simply use the `count` property of NSArray, and use the fact that GRMustache considers zero numbers as false:
> WARNING (February 27, 2013): it looks that accessing NSArray's count crashes on arm64 (see [issue #70](https://github.com/groue/GRMustache/issues/70)).
>
> Please avoid this technique until this issue is solved.
```objc
NSArray *friends = ...;
id data = @{ @"friends": friends };
Expand Down

0 comments on commit eac53f1

Please sign in to comment.