Hi,
I have three small questions.
1. How can I change the SCDateCell type to day-month-year format instead of day-hour format. The general english format (month/day/year) is also ok, but if I can make it day/month/year it'd be perfect
2. I couldn't change the color of the SCSelectionCell's detail text. What I mean is when you select the item from the list, the selected item is on the right side of the main table's cell. Can I change it to blue for instance?
3. This is a tricky one, and I don't know if there is an answer to it. I have selection cells and textfield cells in a tableview. When I tap the textfield cell, the keyboard comes up. Great

In general behaviour, to close the keyboard when you are done, you need to tap somewhere else. But the problem is there are lots of selection cells and most likely the user will tap one unintentionally and it will take the user to the selection view again and again for each tap.
I thought I can define a BOOL and hold if the keyboard is shown any time. If I can override a method like,
- (BOOL) shouldTheSelectionViewBeVisible (a weird name for a method, I admit it

)
I can then return FALSE if the keyboard is already shown. I hope I could make myself clear.
Thanks,