I have an reversed array
NSArray *reversedArray = [[arr reverseObjectEnumerator] allObjects];
It contains following value
Reversed Array: (
0,
0,
“0.1702998”,
“0.4936719”,
0,
“0.1861508”,
)
So the value which are comming are dynamic, So i want the first non zero value from this array.
How can i do this?
1 Answer