Probably your test is in the wrong order
while count >= self.countDadJokes {
never occurs, as count = 1 to start
Change with
while count <= self.countDadJokes {
or maybe
while count < self.countDadJokes {
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags: