日付の変更がいかに簡単で、テーブルビューの新しいデータセットを取得できるかを知りたいと思います。
myfitnesspalアプリのようなもの。コメントやチュートリアルへのWebリンクは大歓迎です。
読んでくれてありがとう
- (IBAction)previousDayButtonPressed:(id)sender
{
[self changeCurrentDayBy:-1];
[self.drinksTableView reloadData];
}
- (IBAction)nextDayButtonPressed:(id)sender
{
[self changeCurrentDayBy:1];
[self.drinksTableView reloadData];
}
- (void)changeCurrentDayBy:(NSInteger)numberOfDays
{
}