I am trying to define constants in one of my file in my project.
i know, i can define it like below
const CGSize kSize = { 46.f, 44.f };
But what i am trying to achieve like this :
if device type iPad
const CGSize kSize = { 146.f, 144.f };
else
const CGSize kSize = { 46.f, 44.f };
Is it possible to achieve above point ?
Can any one help me how can i achieve this. any help or any guidance will be helpful.