
Hi,
How to define float variable in objective c?
Thanks

Hi,
Here is the example of defining float variable.
float i; i=10;
Thanks

Hi,
Here is another example:
// File : myClass.h
@interface myClass
{
float value;
}
@property float value;
@end;
and in .m file:
// File : myClass.m @implementation myClass @synthesize value; @end
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.