Hacker News new | ask | show | jobs
by cooldude127 6386 days ago
actually, objective-c is not strongly typed. it is quite dynamic, despite the fact that you often see types specified. you could replace every declared type with 'id', and your code would still work, and it would be dynamically typed.
2 comments

you probably meant "not statically-typed"
Objective-C has weak and dynamic typing, and optionally static typing information can also be added to variables.
yes, i stand corrected.