gpt4 book ai didi

ios - 如何从数组中获取特定值的对象

转载 作者:行者123 更新时间:2023-11-28 20:59:13 25 4
gpt4 key购买 nike

在 swift 中,我使用这段代码获取特定对象的特定值

if let layer = self.layers.first(where: {$0.id == id}) { }

我想在 objective-c 中使用它。我应该如何从对象数组中获取特定值的对象

最佳答案

您可以在 Objective-C 中使用 NSPredicate 来过滤数组。

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"id == %@", id];
id layer = [[self.layers filteredArrayUsingPredicate:predicate] firstObject]

关于ios - 如何从数组中获取特定值的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50485665/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com