How to declare variable in objective c?
Answer / Himanshu Bhatnagar
In Objective-C, you can declare a variable using: `<type> <name>;` For example: `int myNumber;` or `NSString *myString;`
| Is This Answer Correct ? | 0 Yes | 0 No |
What is instancetype?
What is a delegate objective c?
Tell me something about objective-c blocks?
Is c and objective c the same?
What are nsautoreleasepool and how can we use them?
Which class is used to establish a connection between applications to the web server?
What is strong and weak in objective c?
What is the difference between underscore and self (i.e self.xx and _xx) ?
What is an example of category?
Can you use objective c in swift?
How do you define a protocol?
Is objective c object oriented?