Why this is an Error ?
float (^isFloat)(float) = ^(float d)
{
return d*2.0;
};
At the sometime, the following is error free,
float (^isFloat)(float) = ^(float d)
{
return d;
};
PLease help me understand.
|
Why this is an Error ?
At the sometime, the following is error free,
PLease help me understand.
| |||||
feedback
|
|
Because your return type on the first block is incorrect. You defined the block to return a | |||||||||
feedback
|