コンテンツまたはラベルを日付に設定する次のコード行があります。
cell.birthdayLabel.text = [[GlobalBirthdaysEditor instance] getFormattedDateString:[birthday getDate]];
年が 1604 に等しいことを確認する必要があり、そうであれば表示しないでください。
このオブジェクトから年を取得するにはどうすればよいですか?
したがって、基本的には次のようなコードを探します。
if (year == 1604)
{
//set the date without the year
} else {
cell.birthdayLabel.text = [[GlobalBirthdaysEditor instance] getFormattedDateString:[birthday getDate]];
}
ありがとうございました!