在 SwiftUI 列表中重新加载单个行属性
Reloading individual rows properties in SwiftUI List
我正在尝试为用户提供保存或取消保存新闻文章的机会。保存按钮将其保存在后端,但当后端更新时图像不会更新。
@State var industryInsights = [IndustryInsight]()
List {
ForEach(industryInsights, id: \.self) { insight in
IndustryInsightRowView(insight: insight)
}
}
我不确定这样做的最佳方式,但我希望按钮图像在用户按下按钮时更新。任何帮助将不胜感激。
InsightClass 和属性
struct IndustryInsight: Codable, Hashable, Identifiable {
let id: Int
let industry, alert, date: String
let url: String
let status: String
}
按下保存按钮时的函数。
func saverowButtonClicked(alert: IndustryInsight) {
if alert.status == "Saved" {
RestAPI.changeStatusIndustryAlerts(id: alert.id, status: "Unsave", completionHandler: { () in
})
} else {
RestAPI.changeStatusIndustryAlerts(id: alert.id, status: "Save", completionHandler: { () in
})
}
}
我尽量避免使用@State,而是使用@ObservableObject 和@Published。
尝试将您的 IndustryInsight 结构转换为 ObservableObject class 并让 IndustryInsightRowView 接受它作为 @ObservedObject。
我正在尝试为用户提供保存或取消保存新闻文章的机会。保存按钮将其保存在后端,但当后端更新时图像不会更新。
@State var industryInsights = [IndustryInsight]()
List {
ForEach(industryInsights, id: \.self) { insight in
IndustryInsightRowView(insight: insight)
}
}
我不确定这样做的最佳方式,但我希望按钮图像在用户按下按钮时更新。任何帮助将不胜感激。
InsightClass 和属性
struct IndustryInsight: Codable, Hashable, Identifiable {
let id: Int
let industry, alert, date: String
let url: String
let status: String
}
按下保存按钮时的函数。
func saverowButtonClicked(alert: IndustryInsight) {
if alert.status == "Saved" {
RestAPI.changeStatusIndustryAlerts(id: alert.id, status: "Unsave", completionHandler: { () in
})
} else {
RestAPI.changeStatusIndustryAlerts(id: alert.id, status: "Save", completionHandler: { () in
})
}
}
我尽量避免使用@State,而是使用@ObservableObject 和@Published。 尝试将您的 IndustryInsight 结构转换为 ObservableObject class 并让 IndustryInsightRowView 接受它作为 @ObservedObject。