Tim Bodeit
Tim Bodeit
> Say you have a UILabel that you want to change the font/size/line break settings (line number, word wrap mode) on based on the length of the text in the...
I have a pretty large nss file in one of my applications and we have been seeing some performance issues as well. I've been meaning to look into this, but...
Please have a look through the [history](https://github.com/tombenner/nui/commits/master/NUI/Core/NUIStyleParser.m) of that file and see if you can find your version.
Alright... I'll try to find the time to look into this.
I've seen this crash as well, though until now never thought about avoiding it. We simply took it as a sign that we're missing a key that we really should...
Interesting observation. I personally can't think of a reason why this would be needed. @tombenner can you comment on this? @yjkogan A pr that cleans this up a bit would...
@yjkogan Note however that super is in fact called already. Consider the following "implementation". ``` // vanilla UILabel - (void)didMoveToWindow { /* Maybe something else, maybe not */ [super didMoveToWindow];...
What I mean is: You are correct in your observation. I do not see a reason why one would need to swizzle every class individually instead of letting them "drop...
About the swizzle chain: While I agree that only swizzling UIView would be the cleaner way, the chain seems to me like it is intact. When calling `didMoveToWindow` on UILabel:...
:+1: Especially style classes and style value types.