[SocialAppLayout example] update to use ASTextNode's passthroughNonlinkTouches property

This commit is contained in:
Hannah Troisi
2016-03-23 21:32:05 -07:00
parent 18b17a1ecc
commit c2e5db85ae
2 changed files with 1312 additions and 466 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -89,6 +89,7 @@
_postNode.userInteractionEnabled = YES; _postNode.userInteractionEnabled = YES;
_postNode.linkAttributeNames = @[ kLinkAttributeName ]; _postNode.linkAttributeNames = @[ kLinkAttributeName ];
_postNode.attributedString = attrString; _postNode.attributedString = attrString;
_postNode.passthroughNonlinkTouches = YES; // passes touches through when they aren't on a link
} }