AJ
AJ
Also, is your project using ARC? If it isn't, this may be a source of contention as the EXC_BAD_ACCESS is caused when an object is overreleased.
Would it be possible for you to create a sample project with this exact issue that you could provide to me? I would then happily investigate and attempt to fix...
Good catch. If you submit a pull request we'd be happy to review it. If you could throw in some test cases as well that would be superb.
You are saying `imageNamed:inBundle:compatibleWithTraitCollection:` would be called in the event `imageNamed:` failed to retrieve anything? Interesting. Feel free to submit a pull request and we'd be happy to take a...
I think the preferred way to do it would be to specify anything NUI needs to know within `NUISettings`. It would be ideal to stick to just having styling information...
Why would you do that instead of merely doing: ``` /* nss file*/ MyTextField { border-color: #123456; } /* some UI file */ - (void)someSetupMethod { self.myTextField.nuiClass = @"MyTextField"; }...
Can this sort of thing can be addressed by [render customization](https://github.com/tombenner/nui/issues/317)? It has currently been partially implemented at a very granular level, but as per the discussion it needs to...
Fair enough. I'd like to hear your thoughts on this @timbodeit.
[This talks](https://github.com/Stunner/nui#overriding-properties-work-in-progress) about solving that very problem (for UIButton). However, that capability is not yet finished to the point where it may be merged back into this repo; but I...
> Possible solutions might be reseting backgroundColor to clear in NUIButtonRenderer or give user opportunity to set backgroundColor of a view in .nss file. [Background color can be set on...