gpt4 book ai didi

ios - 如果超过 30 分钟,如何将 NSString 时间转换为条件

转载 作者:行者123 更新时间:2023-11-28 18:11:17 24 4
gpt4 key购买 nike

我有一个提取的 NSString 00:50 如果它多于或少于 30 分钟,我需要对其进行调节。

最佳答案

如果字符串具有固定格式 HH:MM 那么您可以只比较字符串:

NSString *timeStr = ...; // time in HH:MM format
if ([timeStr compare:@"00:30"] == NSOrderedAscending) {
// less than 30 minutes
} else {
// 30 minutes or more
}

关于ios - 如果超过 30 分钟,如何将 NSString 时间转换为条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18239346/

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