Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Quero desenvolver um aplicativo para iPhone, o que preciso?

Fernando Bass
November 10, 2012

Quero desenvolver um aplicativo para iPhone, o que preciso?

Slides da palestra do 4 DevInSantos realizado em 10/11/2012

Fernando Bass

November 10, 2012
Tweet

More Decks by Fernando Bass

Other Decks in Technology

Transcript

  1. Twitter: @fer_bass Blog: http://ferbass.com .FSDBEPEFUSBCBMIP Ainda está faltando mão de

    obra. Valor hora R$ 35 reais ~ R$ 100 reias+ Sunday, November 11, 12
  2. Twitter: @fer_bass Blog: http://ferbass.com .FSDBEPEFUSBCBMIP Ainda está faltando mão de

    obra. Valor hora R$ 35 reais ~ R$ 100 reias+ Muitas oportunidades para freelancer Sunday, November 11, 12
  3. Twitter: @fer_bass Blog: http://ferbass.com $POIFDFOEPPJ04 O iOS originalmente chamado de

    iPhone OS foi o sistema operacional criado para rodar nos dispositivos iPhone. Sua primeira versão surgio em meados de 2007 e em seguida o sistema foi introduzido em outros dispositivos como iPod Touch, iPad e Apple TV Sunday, November 11, 12
  4. Twitter: @fer_bass Blog: http://ferbass.com $PDPB5PVDI When designing your applications, you

    should investigate the technologies in this layer first to see if they meet your needs. http://developer.apple.com Sunday, November 11, 12
  5. Twitter: @fer_bass Blog: http://ferbass.com .FEJBMBZFS The Media layer contains the

    graphics, audio, and video technologies geared toward creating the best multimedia experience available on a mobile device. http://developer.apple.com Sunday, November 11, 12
  6. Twitter: @fer_bass Blog: http://ferbass.com $PSF4FSWJDFT The Core Services layer contains

    the fundamental system services that all applications use. Even if you do not use these services directly, many parts of the system are built on top of them. http://developer.apple.com Sunday, November 11, 12
  7. Twitter: @fer_bass Blog: http://ferbass.com A version of the Foundation framework

    is available in both Mac OS X and iOS, and most of the classes you would expect to be present are available in both. Sunday, November 11, 12
  8. Twitter: @fer_bass Blog: http://ferbass.com A version of the Foundation framework

    is available in both Mac OS X and iOS, and most of the classes you would expect to be present are available in both. 0CKFDUJWF$HBSCBHFDPMMFDUJPO Sunday, November 11, 12
  9. Twitter: @fer_bass Blog: http://ferbass.com $PSF04 The Core OS layer contains

    the low-level features that most other technologies are built upon. Even if you do not use these technologies directly in your applications, they are most likely being used by other frameworks. http://developer.apple.com Sunday, November 11, 12
  10. Twitter: @fer_bass Blog: http://ferbass.com Criando instancia da classe Gato *meuGato

    = [[Gato alloc] init]; gcc meuGato.m -o meuGato -l objc Sunday, November 11, 12
  11. Twitter: @fer_bass Blog: http://ferbass.com Diferente Ruby minha_string = String.new minha_string

    = “Olá” Objective-C NSString *minhaString = [[NSString alloc] init]; Sunday, November 11, 12
  12. Twitter: @fer_bass Blog: http://ferbass.com Diferente Ruby minha_string = String.new minha_string

    = “Olá” Objective-C NSString *minhaString = [[NSString alloc] init]; minhaString = @”olá” Sunday, November 11, 12
  13. Twitter: @fer_bass Blog: http://ferbass.com Diferente Ruby meu_array = [“a”, “b”,

    “c”] Objective-C NSArray *meuArray = [[NSArray alloc] initWithObjects:@”a”, @”b”, @”c”, nil]; Sunday, November 11, 12
  14. Twitter: @fer_bass Blog: http://ferbass.com Diferente Ruby meu_array = [“a”, “b”,

    “c”] Objective-C NSArray *meuArray = [[NSArray alloc] initWithObjects:@”a”, @”b”, @”c”, nil]; Nova sintaxe Sunday, November 11, 12
  15. Twitter: @fer_bass Blog: http://ferbass.com Diferente Ruby meu_array = [“a”, “b”,

    “c”] Objective-C NSArray *meuArray = [[NSArray alloc] initWithObjects:@”a”, @”b”, @”c”, nil]; NSArray *meuArray = @[@”a”, @”b”, @”c”]; Nova sintaxe Sunday, November 11, 12