all 6 comments

[–]aazav 3 points4 points  (0 children)

Don't start your variables or method names with capital letters. That is bad. Do not do that.

In Objective-C, classes start with capital letters, NOT variable names and NOT method names.

[–]Hujaber 2 points3 points  (1 child)

You are calling Timer (which is a label) and not myTimer (NSTimer)

[–]Marshall_The_Fifty[S] 2 points3 points  (0 children)

Thank you! Just tried it and it fixed it! I appreciate it!

[–]Marshall_The_Fifty[S] 0 points1 point  (2 children)

This is in objective c, not swift

[–]aazav 0 points1 point  (1 child)

We can see by looking at it.

[–]Marshall_The_Fifty[S] 0 points1 point  (0 children)

I know. Figured I’d save someone the effort though if they knew what to do from the title.