SlideShare a Scribd company logo
1 of 24
Cliff McCollum
                                 cliffmcc@gmail.com
                                www.leadingsoftware.ca




Universal iOS Applications
Some simple patterns and suggestions
Universal
Application?
Intended Audience
      1. You understand Objective-C
      2. You have created working iOS Apps before
      3. You are familiar with the XCode environment
      4. You have used Interface Builder


If this does not describe you, not to worry. As long as you
have a good understand of C++, Java, or another related
language you should be able to understand the examples.
Basic Steps
1. Configure Project Settings
2. Create Your Classes
3. Test
4. Configure Icons
5. Submit
Key Project Settings

                          Always use latest SDK...
                           ...but target oldest OS




                                  Project settings



 Application .plist file
Key Project Settings



             Weak-link new libraries.
Initial XIB file



              Shared or separate App Delegate?
                        It’s up to you.
Coding Tools
CHECK CLASS SUPPORT

Class
notificationClass
=
NSClassFromString(@"UILocalNotification");

if
(notificationClass)
{


UILocalNotification*
n
=
[[notificationClass
alloc]
init];
}

CHECK METHOD SUPPORT

if
([UIApplication

instancesRespondToSelector:@selector(scheduleLocalNotification:)])
{


[[UIApplication
sharedApplication]
scheduleLocalNotification:n];
}

CHECK DEVICE

if
(UI_USER_INTERFACE_IDIOM()
==
UIUserInterfaceIdiomPad)
{


//
This
is
a
great
new
Macro
in
recent
SDKs
}
Coding Tools
CHECK FOR RETINA DISPLAY

if
([[UIScreen
mainScreen]
respondsToSelector:@selector(scale)]
&&





[[UIScreen
mainScreen]
scale]
==
2.0)
{





//
do
iPhone
4
stuff
}
Common Patterns
1. Common controller, different bundles.
   if
(UI_USER_INTERFACE_IDIOM()
==
UIUserInterfaceIdiomPad)
{
   


self.infoViewController
=
[[InfoViewController
alloc]
          initWithNibName:@"InfoViewController_iPad"
bundle:nil];
   }
   else
{
   


self.infoViewController
=
[[InfoViewController
alloc]

          initWithNibName:@"InfoViewController_iPhone"
bundle:nil];
   }




   iPhone                                                   iPad
2. Common controller, unique presentation.
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
   // On the iPad, present the view in a popup controller
   self.notesViewController = [[NotesViewController alloc]
                      initWithNibName:@"CardNotes_iPad" bundle:nil];
   CGSize popoverSize;
   popoverSize.width = 600;
   popoverSize.height = 325;
   self.notesViewController.contentSizeForViewInPopover = popoverSize;
   self.notesViewPopoverController = [[UIPopoverController alloc]
          initWithContentViewController:self.notesViewController];
   self.notesViewController.modalInPopover = TRUE;

 CGRect cardTitleRect;
 cardTitleRect.origin.x = 384;
 cardTitleRect.origin.y = 180;
 cardTitleRect.size.width = 1;
 cardTitleRect.size.height = 1;
 [self.notesViewPopoverController presentPopoverFromRect:cardTitleRect
        inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:TRUE];
}
else {
  // iPhone actions
  self.notesViewController = [[NotesViewController alloc]
                    initWithNibName:@"CardNotes_iPhone" bundle:nil];
  [self presentModalViewController:self.notesViewController animated:TRUE];
}
2. Common controller, unique presentation.
2. Common controller, unique presentation.


-(void)notesViewCleanup {
     if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
     {
        [self.notesViewPopoverController dismissPopoverAnimated:TRUE];
        [self.notesViewPopoverController release];
        self.notesViewPopoverController = nil;
     }
     else {
        [self dismissModalViewControllerAnimated:TRUE];
     }
     [self.notesViewController release];
}
3. Common Navigation controller,
-(void)display {

                     unique presentation.
    [self prepareDisplay];

   [self.parentController presentModalViewController:self.navigationController animated:TRUE];
}

-(void)displayInPopup {

   self.usingPopover = TRUE;

   [self prepareDisplay];

   CGSize popoverSize;

   popoverSize.width = 300; popoverSize.height = 365;

   self.navigationController.contentSizeForViewInPopover = popoverSize;

   self.popoverController = [[UIPopoverController alloc]
                                   initWithContentViewController:self.navigationController];

   CGRect solutionTitleRect;

   solutionTitleRect.origin.x = 384; solutionTitleRect.origin.y = 420;

   solutionTitleRect.size.width = 1; solutionTitleRect.size.height = 1;

   [self.popoverController presentPopoverFromRect:solutionTitleRect inView:self.parentController.view

   
      permittedArrowDirections:UIPopoverArrowDirectionUp animated:TRUE];
}

-(void)prepareDisplay {

   self.solutionTableController = [[SolutionSetTableController alloc]

   
      
    
   
    
    
     
    
    initWithNibName:@"SolutionSetTable" bundle:nil];

   self.solutionTableController.title = @"Select An Issue";

   self.solutionTableController.delegate = self;

   UINavigationController *newNav = [[UINavigationController alloc]

   
      
    
   
    
    
     
    
      initWithRootViewController:self.solutionTableController];

   UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back"
                         style:UIBarButtonItemStylePlain target:self action:@selector(backButtonClicked:)];

   newNav.navigationBar.topItem.leftBarButtonItem = backButton;

   [backButton release];

   self.navigationController = newNav;
}
3. Common Navigation controller,
      unique presentation.
3. Common Navigation controller,
              unique presentation.

-(void)cleanupDisplay {

 if (self.usingPopover) {
      [self.popoverController dismissPopoverAnimated:TRUE];      
  

 }
   else {
      [self.navigationController dismissModalViewControllerAnimated:TRUE];
   }
}
4. UIWebView for unique presentation
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* rules for iPad */
  body {
    font-size: 24px;
  }
  img.LGautosize {
  width: 36px; height: 36px;
  }
  img.SMautosize {
  width: 24px; height: 24px;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* iPhone rules here */
  body {
    font-size: 16px;
  }
  img.LGautosize {
  width: 24px; height: 24px;
  }
  img.SMautosize {
  width: 16px; height: 16px;
  }
}
4. UIWebView for unique presentation

<img src="heart.png" class="LGautosize"/>
5. Unique Subclasses
•Use Subclasses instead of conditionals
•Common behavior in parent class
•Use XIB to create proper subclass
•Device specific behavior in subclass
Icon Settings




      Application .plist file
REFERENCES
Apple WWDC 2010 Session Videos: http://developer.apple.com/videos/wwdc/2010/
                                Sessions 103, 301, 303

                 Universal Icons: Apple Technical Q&A QA1686
CREDITS


           Opening image: Icon Factory

Sample Application: Teamwork, by Calliope Learning




                                                          Cliff McCollum
                                                      cliffmcc@gmail.com
                                                     www.leadingsoftware.ca
Questions

More Related Content

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Recently uploaded (20)

Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 

Featured

Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Featured (20)

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 

Creating a Universal iOS Application

  • 1. Cliff McCollum cliffmcc@gmail.com www.leadingsoftware.ca Universal iOS Applications Some simple patterns and suggestions
  • 3. Intended Audience 1. You understand Objective-C 2. You have created working iOS Apps before 3. You are familiar with the XCode environment 4. You have used Interface Builder If this does not describe you, not to worry. As long as you have a good understand of C++, Java, or another related language you should be able to understand the examples.
  • 4. Basic Steps 1. Configure Project Settings 2. Create Your Classes 3. Test 4. Configure Icons 5. Submit
  • 5. Key Project Settings Always use latest SDK... ...but target oldest OS Project settings Application .plist file
  • 6. Key Project Settings Weak-link new libraries.
  • 7. Initial XIB file Shared or separate App Delegate? It’s up to you.
  • 8. Coding Tools CHECK CLASS SUPPORT Class
notificationClass
=
NSClassFromString(@"UILocalNotification");
 if
(notificationClass)
{ 

UILocalNotification*
n
=
[[notificationClass
alloc]
init]; } CHECK METHOD SUPPORT if
([UIApplication
 instancesRespondToSelector:@selector(scheduleLocalNotification:)])
{ 

[[UIApplication
sharedApplication]
scheduleLocalNotification:n]; } CHECK DEVICE if
(UI_USER_INTERFACE_IDIOM()
==
UIUserInterfaceIdiomPad)
{ 

//
This
is
a
great
new
Macro
in
recent
SDKs }
  • 9. Coding Tools CHECK FOR RETINA DISPLAY if
([[UIScreen
mainScreen]
respondsToSelector:@selector(scale)]
&& 




[[UIScreen
mainScreen]
scale]
==
2.0)
{ 




//
do
iPhone
4
stuff }
  • 11. 1. Common controller, different bundles. if
(UI_USER_INTERFACE_IDIOM()
==
UIUserInterfaceIdiomPad)
{ 


self.infoViewController
=
[[InfoViewController
alloc] initWithNibName:@"InfoViewController_iPad"
bundle:nil]; } else
{ 


self.infoViewController
=
[[InfoViewController
alloc]
 initWithNibName:@"InfoViewController_iPhone"
bundle:nil]; } iPhone iPad
  • 12. 2. Common controller, unique presentation. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { // On the iPad, present the view in a popup controller self.notesViewController = [[NotesViewController alloc] initWithNibName:@"CardNotes_iPad" bundle:nil]; CGSize popoverSize; popoverSize.width = 600; popoverSize.height = 325; self.notesViewController.contentSizeForViewInPopover = popoverSize; self.notesViewPopoverController = [[UIPopoverController alloc] initWithContentViewController:self.notesViewController]; self.notesViewController.modalInPopover = TRUE; CGRect cardTitleRect; cardTitleRect.origin.x = 384; cardTitleRect.origin.y = 180; cardTitleRect.size.width = 1; cardTitleRect.size.height = 1; [self.notesViewPopoverController presentPopoverFromRect:cardTitleRect inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:TRUE]; } else { // iPhone actions self.notesViewController = [[NotesViewController alloc] initWithNibName:@"CardNotes_iPhone" bundle:nil]; [self presentModalViewController:self.notesViewController animated:TRUE]; }
  • 13. 2. Common controller, unique presentation.
  • 14. 2. Common controller, unique presentation. -(void)notesViewCleanup { if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { [self.notesViewPopoverController dismissPopoverAnimated:TRUE]; [self.notesViewPopoverController release]; self.notesViewPopoverController = nil; } else { [self dismissModalViewControllerAnimated:TRUE]; } [self.notesViewController release]; }
  • 15. 3. Common Navigation controller, -(void)display { unique presentation. [self prepareDisplay]; [self.parentController presentModalViewController:self.navigationController animated:TRUE]; } -(void)displayInPopup { self.usingPopover = TRUE; [self prepareDisplay]; CGSize popoverSize; popoverSize.width = 300; popoverSize.height = 365; self.navigationController.contentSizeForViewInPopover = popoverSize; self.popoverController = [[UIPopoverController alloc] initWithContentViewController:self.navigationController]; CGRect solutionTitleRect; solutionTitleRect.origin.x = 384; solutionTitleRect.origin.y = 420; solutionTitleRect.size.width = 1; solutionTitleRect.size.height = 1; [self.popoverController presentPopoverFromRect:solutionTitleRect inView:self.parentController.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:TRUE]; } -(void)prepareDisplay { self.solutionTableController = [[SolutionSetTableController alloc] initWithNibName:@"SolutionSetTable" bundle:nil]; self.solutionTableController.title = @"Select An Issue"; self.solutionTableController.delegate = self; UINavigationController *newNav = [[UINavigationController alloc] initWithRootViewController:self.solutionTableController]; UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:self action:@selector(backButtonClicked:)]; newNav.navigationBar.topItem.leftBarButtonItem = backButton; [backButton release]; self.navigationController = newNav; }
  • 16. 3. Common Navigation controller, unique presentation.
  • 17. 3. Common Navigation controller, unique presentation. -(void)cleanupDisplay { if (self.usingPopover) { [self.popoverController dismissPopoverAnimated:TRUE]; } else { [self.navigationController dismissModalViewControllerAnimated:TRUE]; } }
  • 18. 4. UIWebView for unique presentation @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { /* rules for iPad */ body { font-size: 24px; } img.LGautosize { width: 36px; height: 36px; } img.SMautosize { width: 24px; height: 24px; } } @media only screen and (min-device-width: 320px) and (max-device-width: 480px) { /* iPhone rules here */ body { font-size: 16px; } img.LGautosize { width: 24px; height: 24px; } img.SMautosize { width: 16px; height: 16px; } }
  • 19. 4. UIWebView for unique presentation <img src="heart.png" class="LGautosize"/>
  • 20. 5. Unique Subclasses •Use Subclasses instead of conditionals •Common behavior in parent class •Use XIB to create proper subclass •Device specific behavior in subclass
  • 21. Icon Settings Application .plist file
  • 22. REFERENCES Apple WWDC 2010 Session Videos: http://developer.apple.com/videos/wwdc/2010/ Sessions 103, 301, 303 Universal Icons: Apple Technical Q&A QA1686
  • 23. CREDITS Opening image: Icon Factory Sample Application: Teamwork, by Calliope Learning Cliff McCollum cliffmcc@gmail.com www.leadingsoftware.ca

Editor's Notes

  1. What is a Universal Application? An app that includes both iPhone and iPad versions inside a single binary.
  2. As you write your universal apps, you&amp;#x2019;ll find yourself wanting to ask a few common questions...
  3. Check if a class exists Check if a class supports a new method Check if you are on an iPad