Morning
I have the following code:
SCPropertyDefinition *dueDatePropertyDef = [taskDef propertyDefinitionWithName:@"dueDate"];
dueDatePropertyDef.title = @"Review Date";
Which only gives me the day and time, whereas I want the day, month and year.
In a previous statement, I had used:
[((SCDateCell *)customCell).dateFormatter setDateFormat:@"MMM dd, yyyy"];
Obviously I cannot use customCell in this instance, but am strugglingas to what it should be changed to.
Having said that - I am not sure that the statement above is the right statement etiher.
Is this the right type of statement to use to get what I am looking for ?
Iain