• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

objective-c - 从 NSString 解析 NSDate 时出错

[复制链接]
菜鸟教程小白 发表于 2022-12-13 11:21:20 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

当我点击一行时,我的应用程序卡住,这是 didSelectRowAtIndexPath 的代码,stringDate 等于这样的字符串:Feb 4.

EditView *editController = [[EditView alloc] initWithNibName:nil bundle:nil];
[self.navigationController pushViewController:editController animated:YES];

NSDictionary *cellValue = [self.array objectAtIndex:[indexPath row]];
editController.savedString = [cellValue objectForKey"label"];

NSDateFormatter *df = [[NSDateFormatter alloc] init];
NSString *stringDate = [cellValue valueForKey"date"];

NSDate *parsedDate = [df dateFromString:stringDate];
editController.savedDate = parsedDate;

[editController release];

[self.tableView deselectRowAtIndexPath:indexPath animated:YES];

点击行时出现此错误,在 NSString *stringDate = [cellValue valueForKey"date"]; 行上出现此错误:

* Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: date'

更新:解析的日期设置为具有日期和时间模式的 UIDatePicker,我只是将字符串日期转换为 NSDate[timePicker setDate:savedDate animated:YES];

一起使用

我创建 cellValue 作为一个 NSDictionary 基本上访问一个 plist 我在其中创建了一个 NSDictionary 然后写它带有一个格式化的 NSStringarray 显示 plist 数组,因此我可以使用 [cellValue objectForKey"date"]

访问它
NSDictionary *cellValue = [self.array objectAtIndex:[indexPath row]];



Best Answer-推荐答案


你需要教格式化程序你的字符串满足的格式

应该是这样的:

NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat"MMM d"];

关于objective-c - 从 NSString 解析 NSDate 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9142421/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap