Posts

Post not yet marked as solved
4 Replies
I'm a little confused. Isn't the updateScore method updating the existing rightBarButtonItem? How do I change my code so it doesn't create a new instance of rightBarButton each time?
Post not yet marked as solved
6 Replies
Yea the questions are purely text so you are right with it not being a large dataset. Originally I was thinking I'd just push a new app update every time we have more videos found and quiz questions made, but the cloudkit solution is certainly appealing. Especially if I accidentally miss a spelling error or something like that needs to be fixed fast. Not having to manually update the app is nice.
Post not yet marked as solved
6 Replies
Yea we want the app to launch with atleast a couple months worth of videos + quizzes and then update it when we have more content made. thanks for the response
Post not yet marked as solved
6 Replies
Right now we were thinking a couple months worth of daily videos and there accompanying quizzes, so hundreds of questions to thousands later on down the road when we need more. The user can watch the video via a button in app which then opens it in youtube. After they watch the video, they will go back to the app and tap a button which will begin the accompanying quiz. On the topic of recurring questions, when I put them in code I can probably just make 3 of each days' quiz questions be 3 of the previous days' ones, since every user follows the same daily video sequence. I will need to figure out some timer system so if the user skips a day, the app can pick up right where they left off.I guess what I really am trying to figure out is:Should I store the quiz data as a JSON file on some web service, and then use JSONDecoder and what not to pull it into my app's quiz feature?orUse a data persistence system like Core Data to store my quiz data?Thanks