Quote:
Originally Posted by brandon0104
I think you're biting off a bit more than you can chew. You need to work through some more tutorials and work on little projects first. This helps a lot, trust me I've been where you are.
1. [appDelegate setModalData: joke]; is placed before joke is even declared. Thats why you're getting that error.
2. joke = [eleJokes object.... is spelled differently than your original elejokes mutable array.
3. UILabel is class, not a variable. As I said in the last post you should delete that line anyway.
4. You didn't even close your brackets. "}"
|
I am trying to create an app that displays random text and when I use
Code:
[appDelegate setModelData:jokes];
A warning comes up that says my delegate might not respond to "setModelData" what could be the reason for this?