-
-
Notifications
You must be signed in to change notification settings - Fork 159
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
No newData event received in custom class #194
Comments
My first thought is that I see that |
Moving the variable above the |
To understand why your (And thanks @jordanpwood! 👏) |
@pcantrell Thanks a lot for clarifying, will take a look at the documentation :) |
Good to hear that it’s working on tvOS! Thanks for letting me know. I’ll check that box off on #28. Are you using Carthage, Cocoapods, or neither to include Siesta? |
@pcantrell Sure, I prefer Cocoapods, but since the spec wasn't updated yet I am just cloning the Siesta project and adding the Thanks a lot :) |
Hi,
I'm currently working on a class that handles a few network requests. So far all Siesta examples and trying some things on my own worked fine, I just used the code in my
UIViewController
for testing purposes. When creating the class I noticed that the same requests I tried earlier in myUIViewController's
suddenly don't work in my custom class. I do see theobserverAdded
andrequested
event in theresourceChanged
delegate method, but thenewData
event never gets passed to my custom class.The stripped down version of my class looks like this:
And I'm instantiating the class in my
UIViewController
as normal:But for some reason this is what I see in the log:
In my previous testing I did see the
newData
event and my data as expected. Using Charles I was able to see that the requests went fine, and thelatestError
property always returns nil.I have been debugging for the last 2-3 hours but since there really isn't a lot of code I'm running out of ideas.
Thanks in advance
The text was updated successfully, but these errors were encountered: