-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
how to set default view property's order? #8181
Comments
@facebook-github-bot stack-overflow |
Hey @fov42550564 and thanks for posting this! @charpeni tells me this issue looks like a question that would be best asked on StackOverflow. StackOverflow is amazing for Q&A: it has a reputation system, voting, the ability to mark a question as answered. Because of the reputation system it is likely the community will see and answer your question there. This also helps us use the GitHub bug tracker for bugs only. Will close this as this is really a question that should be asked on SO. |
I'm also facing this issue. Since the Honestly, this behavior seems weird to me. @ide Do you know a way around this? |
Looks like the best solution is to implement - (void)didSetProps:(NSArray<NSString *> *)changedProps
{
// Do something that depends on all props having a value.
} |
when I create a custom view, it has several properties, how can I make sure these properties' order.
doSomeThing2
depend ondoSomeThing1
, so when I set default property I want doSomeThing1 exec before doSomeThing2, as follows:Is there has some ways to solve it?
The text was updated successfully, but these errors were encountered: