iphone sdk nsmutablearray对象问题

时间:2011-02-09 09:47:42

标签: iphone

我有一个名为Namearray的可变数组,其中包含7-8个对象。

我想检查它是否包含0个对象,然后我将显示警报视图。

我应该写什么来检查Namearray是否包含零对象。

3 个答案:

答案 0 :(得分:3)

if ([NameArray count] == 0)
{
  // show alertview
}

答案 1 :(得分:0)

很抱歉只是检查并自己找到了。如果有人在寻找答案:

if(NameArray.count == 0)
{
    UIAlertView *baseAlert = [[UIAlertView alloc] 
                              initWithTitle:@"" 
                              message:@"You have missed a place, write everything please....."
                              delegate:self cancelButtonTitle:nil
                              otherButtonTitles:@"OK", nil]; 
    [baseAlert show];       
}

答案 2 :(得分:-1)

如果您使用array.count,那么您的问题将得到解决....