what is the equipvalent of object in C# for objecitve C?
- by Wayne Lo
In c# I can declare object o; then I can assign Obj=(float)5.0; or Obj="a string." Is there an equivalent for objective C? I tried to use id but it does not take primitive type like float or integer. Thanks for helping.