-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ASCellNode] focusStyle mapping #727
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @alexhillc thanks for working on this PR. focusStyle
is available starting with iOS 9, but Texture is still supporting iOS 8. Can you please guard against this. Thanks!
Hey @maicki thanks for reviewing. I've been building against the tvOS SDK, so I must have missed it. Fixed in the latest commit! |
Source/ASTableView.mm
Outdated
self.selectedBackgroundView = node.selectedBackgroundView; | ||
self.separatorInset = node.separatorInset; | ||
self.selectionStyle = node.selectionStyle; | ||
self.accessoryType = node.accessoryType; | ||
|
||
if (AS_AVAILABLE_IOS(9.0)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be consistent can you please change that to 9
@alexhillc We've dropped iOS 8 support (#743). Could you please update this diff one more time? Thank you! |
a4da0e9
to
13fdf5d
Compare
@nguyenhuy, done! |
2f45fea
to
65ee53e
Compare
Awesome thanks all. Let's get that PR in than. |
* [ASCellNode] Adds mapping for UITableViewCell focusStyle * Update CHANGELOG.md
Adds support for setting
focusStyle
on anASCellNode
.