无法摆脱这个警告吗?

发布于 2024-09-04 22:41:26 字数 388 浏览 3 评论 0原文

我收到此警告“格式不是字符串文字,也没有格式参数?有什么想法吗?

-(BOOL)isFirstPointReached{

    NSString *firstPoint = [NSString stringWithFormat:[pointsToFillArray objectAtIndex:0]];
    NSString *lastPoint = [NSString stringWithFormat:[pointsToFillArray lastObject]];

    if([firstPoint isEqualToString:lastPoint]){

        return YES;
    }

    else{ 

        return NO;
    }
}

I'm getting this warning "Format not a string literal and no format arguments? Any ideas?

-(BOOL)isFirstPointReached{

    NSString *firstPoint = [NSString stringWithFormat:[pointsToFillArray objectAtIndex:0]];
    NSString *lastPoint = [NSString stringWithFormat:[pointsToFillArray lastObject]];

    if([firstPoint isEqualToString:lastPoint]){

        return YES;
    }

    else{ 

        return NO;
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

燃情 2024-09-11 22:41:26

几点...

pointToFillArray 是一个对象数组,编译器不知道它是否包含 NSStrings 或任何其他类型的对象。要消除错误,您可以将其强制转换为 (NSString*)

其次, stringWithFormat 通常用于从几个不同的数据片段创建字符串,在这种情况下不需要使用

第三,您可以只创建指针到数组中的对象,然后进行检查

以下内容应该适合您:

NSString *firstPoint = (NSString*)[pointsToFillArray objectAtIndex:0];
NSString *lastPoint = (NSString*)[pointsToFillArray lastObject];

if ([firstPoint isEqualToString:lastPoint]) {
   return YES;
}

A few points...

The pointsToFillArray is an array of objects and the compiler does not know if it contains NSStrings or any other type of object. To get rid of the error you would cast it to (NSString*)

Secondly, the stringWithFormat is normally used to create a string from a few different pieces of data and does not need to be used in this case

Thirdly, you could just create pointers to the objects within the array and then do your check

The following should work for you:

NSString *firstPoint = (NSString*)[pointsToFillArray objectAtIndex:0];
NSString *lastPoint = (NSString*)[pointsToFillArray lastObject];

if ([firstPoint isEqualToString:lastPoint]) {
   return YES;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文