Just started on Objective-c from the c# world.
I'm quite enjoying the "intellisense" on XCode, but because of the lack of generics I wondered if it was possible to explicit type for code readability and "intellisense".
So what's the syntax in Objective-c for this in c#:
//explicit typing in c#
(string)someobject;
((string)someobject).ToLower();
cheers