我有一个表格,其中包含每个月的列数和天数;所以我想循环显示每个月的表格日期。
我有:list<type> object;
和这个循环:
for(int i=0; i< object.count; i++){
object[i].month; // returns month
// i want another loop here to display days for each month
}
表的专栏:
Id month day
===================
1 2 10
2 2 19
3 4 05
3 4 21
提前谢谢你:)
答案 0 :(得分:1)
我假设您的类型类(我将其重命名为Months)看起来像这样:
var next = 0
func fetch()
{
// Grab the new image
let nextImage = UIImage(named: names[next % 4])
next++
// Set the new image
ImageView.image = nextImage
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(.5 * NSEC_PER_SEC))
{
fetch()
}
}
您可以尝试这样的事情
public class Months
{
public int ID { get; set; }
public int month { get; set; }
public int day { get; set; }
}