Merge pull request #1420 from hannahmbanana/fixSocialSampleApp

[SocialAppLayout example] update to use ASTextNode's passthroughNonlinkTouches property
This commit is contained in:
appleguy
2016-03-24 21:01:46 -07:00
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.linkAttributeNames = @[ kLinkAttributeName ];
_postNode.attributedString = attrString;
_postNode.passthroughNonlinkTouches = YES; // passes touches through when they aren't on a link
}