-4

I don't know what I did wrong. I'm trying to add a RSS feed to another page (There is one of the startup page and one for the page I am working on now) but I don't know why this error is occurring. I have already made sure that all my connections on the storyboard are correct but I still get this issue upon loading. If anyone could help, that could be great.

I am making the app for my school which will include a calendar. I am trying to use a RSS feed to fetch events from a WordPress site, like I am currently doing with the news page of the site. After adding new view controllers and navigation controllers and connecting them to each Swift file, the app crashes upon clicking on the page in the sidebar menu. Both pages (Calendar RSS and News RSS) have separate files also.

GitHub Link: https://github.com/TheLamp/WSDAPP

Gabe Zimbric
  • 47
  • 1
  • 6
  • 3
    Dude, post relevant code, don't make SO users download and hunt through a whole project. No one will and you won't get an answer. See this answer for general answer to your question http://stackoverflow.com/questions/24297393/thread-1-signal-sigbart-error – noobsmcgoobs Mar 05 '16 at 00:48
  • http://pastebin.com/y6qycF5E and http://pastebin.com/LbHp6TfD @noobsmcgoobs – Gabe Zimbric Mar 05 '16 at 00:53
  • Just post it in your question so it's searchable for anyone in the future who has the same problem. – noobsmcgoobs Mar 05 '16 at 00:54
  • @noobsmcgoobs I can't because I don't know exactly where the error is and the code is too long to be inserted. Picture: http://imgur.com/thvZ9Ww – Gabe Zimbric Mar 05 '16 at 00:55
  • You need to edit your post to be clearer. At least describe better the structure of your app like what the user is supposed to do and what the outcome is supposed to be. At some point your app built, then you changed something. Describe what you changed and post that. There should also be an error message. Post that. SIGBART usually means you sent a message to an object that doesn't exist or that can't perform of pass on that message. – noobsmcgoobs Mar 05 '16 at 00:58
  • the most interesting part is missing in your screenshot. output of debug window! – user3441734 Mar 05 '16 at 01:02
  • @user3441734 Debug Output: http://pastebin.com/QCnZkmQd – Gabe Zimbric Mar 05 '16 at 01:04
  • '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key myTableView.' so, you have an idea, where to go and what to check ... – user3441734 Mar 05 '16 at 01:15
  • @user3441734 I still don't get what's wrong. After searching the whole .swift file, there is nothing referencing myTableView, only mytableView. Am I still doing something wrong? – Gabe Zimbric Mar 05 '16 at 01:18
  • that should be the trouble, typo myTableView vs mytableView (some outlet could be missing) – user3441734 Mar 05 '16 at 01:21

1 Answers1

0

I fixed the issue by myself. After reading another post found here on Stack Overflow, I had too many assignings to my Table View which made it not work correctly.

Thanks for all the help everyone!

Community
  • 1
  • 1
Gabe Zimbric
  • 47
  • 1
  • 6