I am working on Storyboard
. I have 2 story board for iPhone & iPad. So my question is how can I differentiate between these 2 interfaces.
I am share my code what I did:
// I am writing this code in AppDelegate Method.
UIStoryboard *loStoryboard ;
if (loStoryboard == [UIStoryboard storyboardWithName:@"Main_iPhone" bundle:nil])
{
// iPhone .....
}
else
{
// iPad....
}
But it's not working.