I am updating my app to a universal app but there is something wrong with the Kal Calendar:

From this answer it says I should change:
const CGSize kTileSize = { 46.f, 44.f };
to
const CGSize kTileSize = { 109.0f, 109.0f };
but then it looks great on iPad but not iPhone. How can I make the Kal Calendar for both iPhone and iPad?
Any help will be appreciated!
Thank you!
You can't use a constant in this case - you will have to define the value at runtime.
Initialize
kTileSizeas an ivar of the class where it is defined.And then in constructor of that class do someting like: