我有以下代码行将内容或标签设置为日期。
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]];
}
谢谢!