how to know is it iphone or ipad?

后端 未结 5 757
北荒
北荒 2021-01-06 07:35

i want to know the user uses the iphone or ipad,if the user uses the iphone i want to open the camera,if he uses the ipad or runs in simulator i want to open the library. ho

5条回答
  •  南笙
    南笙 (楼主)
    2021-01-06 07:51

    Working on Vaibhav Tekam's answer, I used this

    NSString *deviceType = [UIDevice currentDevice].model;
    
    
    if([deviceType hasPrefix:@"iPhone"])
    {
         //your code
    }
    

    or

     NSString *deviceType = [UIDevice currentDevice].model;
    
    if([deviceType hasPrefix:@"iPad"])
    {
         //your code
    }
    

    etc. It's much easier that way as it covers all models.

提交回复
热议问题