My application has been rejected be开发者_运维百科cause of isinf. What's an equivalent I can use to get my application accepted?
Best regards
Did they specifically mention isinf? If so, it may be worth challenging the rejection as isinf and isfinite are both documented: man page as part of the iOS API.
Is this what you're looking for?
if(!isfinite(var))
{
    //It's infinite...
}
Or you could try:
NSDecimalNumber *number = [NSDecimalNumber numberWithDouble:myNumber];
if(number == [NSDecimalNumber notANumber])
{
    //Infinity??
}
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论