使用 SwiftUI 构建简单的待办事项列表应用程序 - 日期格式
我第一次使用 SwiftUI 来玩一个简单的风格应用程序。它有 2 个视图,一个是列表视图,另一个是“添加待办事项”视图,它将信息保存到核心数据中。在核心数据中,我有一个名为 ToDo 的实体,它有 2 个属性 - 标题(字符串)和完成(日期)。
在列表视图中,我想在同一行显示条目 - 标题和完成日期。我想我会使用字符串插值来做到这一点,但遇到了这个错误:
无法将“String”类型的值转换为预期的参数类型“Date”。
我使用的代码是这样的:
Text ("\(listedToDo.title!) need to finish by \(listedToDo.completion!)")
我以前没有真正使用过 DatePickers 和 DateFormatters,但它可能是我将日期保存到“添加项目视图”上的核心数据中的方式?
在该文件上,我将以下变量添加到您的代码中: @state var toDoCompletion = Date()
我将此 DatePicker 添加到视图中:
DatePicker(“完成日期:”,选择:$toDoCompletion,displayComponents:.date)
保存代码: let newToDoCompletion = ToDo(context: viewContext)
newToDoCompletion.completion = toDoCompletion
我怎样才能完成列表视图上的最后一点?
I’m playing about with SwiftUI for the first time with a simple to do style app. It has 2 views, one a list view, and the other an Add To Do view, which saves info into core data. In core data I have an entity called ToDo with 2 attributes - title (String) and completion (Date).
In the list view I would like to show the entry - the title and completion date on the same line. I thought I would use string interpolation to do this but run into this error:
Cannot convert value of type 'String' to expected argument type 'Date’.
The code I am using is this:
Text ("\(listedToDo.title!) needs completing by \(listedToDo.completion!)”)
I’ve not really worked with DatePickers and DateFormatters before but it may be how I’m saving the date into core data on the Add Item View?
On that file I added the following variable to your code:@state var toDoCompletion = Date()
I added this DatePicker to the view:DatePicker(“Completion date:", selection: $toDoCompletion, displayedComponents: .date)
And the save code:let newToDoCompletion = ToDo(context: viewContext)
newToDoCompletion.completion = toDoCompletion
How can I finish this last bit on the list view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论