-
Notifications
You must be signed in to change notification settings - Fork 461
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
Error parsing Default.NUI #349
Comments
Thanks for the report. Could you post a stacktrace and the line it is crashing on (please provide a couple lines above and below for context)? I am thinking it may very well be possible you didn't install the proper version of NUIParse. |
I install https://github.com/tombenner/NUIParse I added it as a subproject as instructed by the NUI read me. The call starts with: Call stack from Xcode. Main (1)Queue : com.apple.main-thread (serial) |
Any insights or help? |
You mentioned that it crashes within |
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. |
NUIParse project doesn't compile if its set to use ARC. |
I updated my original post. Here is the call stack again. Main (1)Queue : com.apple.main-thread (serial) |
Is the manual install method correct? I mean this step. "Add NUIParse as a subproject, set its iOSNUIParse target as a dependency of your target, and add libNUIParse.a to your linked libraries." When I do that I get linking errors because there are duplicate symbols. |
I just made NUIParse a subproject and a target dependency. |
Anyways I cannot get it to parse one of the style sheets provide in the project. |
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 this issue. It's hard otherwise (unless you are willing to fix it of course). Not sure about manual setup instructions as I have never done it before. Both active maintainers (including me) use CocoaPods and are not privy to the specifics of manual installation (which was written long ago). I'd have to dig a bit into a project with problems to understand the cause/attempt a fix. |
Ok, I will set up a sample project when I get the chance. Thanks for the On Tue, May 3, 2016 at 2:47 PM, Aaron Jubbal notifications@github.com
|
I am really swamped at work and maybe a while before I can get your a On Tue, May 3, 2016 at 2:47 PM, Aaron Jubbal notifications@github.com
|
am getting a bad access EXC_BAD_ACCESS on line 17 in NUIDefinition.h
this line @Property (strong) NSString *variable;
This only happens when I try to init NUI like this: [NUISettings initWithStylesheet:@"Blue.NUI"];
it work fines this way: [NUIAppearance init];
I didn't use CocoaPods and I can't use CocoaPods due to the nature of my project. I did not have any trouble adding NUIParse to the project.
The text was updated successfully, but these errors were encountered: