所以我创建了一行代码,它接受两个值,一年和一个月,根据你给它的值,它会计算给定年份的给定月份的天数。最初我打算使用 State 变量,所以它会自动更新,但由于 Structs 的工作方式,我无法使用刚刚初始化的变量。(如“不能在属性初始化程序中使用实例成员 'year';属性初始化程序在 'self' 可用之前运行”错误)。我想要这段代码的原因是因为我想要一个 forEach 循环基于该数字自动迭代(因为我正在制作的应用程序将在接下来的两年中每天都有一个列表)。这是我的代码:
struct YearView: View {
@State var year = [2020, 2021, 2022]
//monthSymbols gets an array of all the months
@State var monthArray = DateFormatter().monthSymbols!
@State var yearIndex = 0
@State var monthIndex = 0
@State var month = 0
@State var daysInMonth = Calendar.current.range(of: .day, in: .month, for: Calendar.current.date(from: DateComponents(year: year, month: month + 1))!)!.count
var body: some View {
NavigationView {
List {
Section {
VStack {
Picker("Years", selection: $yearIndex) {
ForEach(0 ..< year.count) { index in
Text(String(self.year[index])).tag(index)
}
}
.pickerStyle(SegmentedPickerStyle())
Divider()
if yearIndex == 0 {
Picker("Month", selection: $monthIndex) {
ForEach(6 ..< monthArray.count) { index in
Text(self.monthArray[index]).tag(index)
}
}
.padding(.bottom, 2)
} else {
Picker("Month", selection: $monthIndex) {
ForEach(0 ..< monthArray.count) { index in
Text(self.monthArray[index]).tag(index)
}
}
.padding(.bottom, 2)
}
}
}
Section {
ForEach(0..<10) { i in
NavigationLink(destination: ContentView(day: dayData[i])) {
DayRow(day: dayData[i])
}
}
}
}
.navigationBarTitle(Text("\(monthArray[monthIndex + indexTest]) \(String(year[yearIndex]))"))
}
.listStyle(InsetGroupedListStyle())
}
}
导航链接的 ForEach 循环是我想要迭代的循环。我尝试过创建这样的函数:
func getRange(year: Int, month: Int) -> Int {
return Calendar.current.range(of: .day, in: .month, for: Calendar.current.date(from: DateComponents(year: year, month: month + 1))!)!.count
}
但是,我不确定我会在哪里运行它,如果它甚至可以工作的话。我是 SwiftUI 和 GitHub 的新手,所以如果有更多信息我可以提供帮助,请问!