Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Treinamento iOS ALEGO
Search
mauriliohrc
December 03, 2011
Programming
1
89
Treinamento iOS ALEGO
mauriliohrc
December 03, 2011
Tweet
Share
More Decks by mauriliohrc
See All by mauriliohrc
HTML5 vs App Nativo
mauriliohrc
0
56
Dicas para publicar seu app na App Store
mauriliohrc
1
74
Introdução a dispositivos móveis
mauriliohrc
0
46
TCC - Rastreamento com dispositivos móveis
mauriliohrc
1
140
Other Decks in Programming
See All in Programming
プログラマのための作曲入門
cheebow
0
440
ABEMAモバイルアプリが Kotlin Multiplatformと歩んだ5年 ─ 導入と運用、成功と課題 / iOSDC 2025
akkyie
0
210
ててべんす独演会〜Flowの全てを語ります〜
tbsten
1
190
そのAPI、誰のため? Androidライブラリ設計における利用者目線の実践テクニック
mkeeda
2
5.2k
クラシルを支える技術と組織
rakutek
0
130
高度なUI/UXこそHotwireで作ろう Kaigi on Rails 2025
naofumi
1
270
アセットのコンパイルについて
ojun9
0
140
CSC305 Lecture 01
javiergs
PRO
1
370
基礎から学ぶ大画面対応(Learning Large-Screen Support from the Ground Up)
tomoya0x00
0
6.7k
GitHub Actions × AWS OIDC連携の仕組みと経緯を理解する
ota1022
0
150
Build your own WebP codec in Swift
kishikawakatsumi
2
340
実践AIチャットボットUI実装入門
syumai
6
2k
Featured
See All Featured
Optimising Largest Contentful Paint
csswizardry
37
3.4k
Six Lessons from altMBA
skipperchong
28
4k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.6k
Producing Creativity
orderedlist
PRO
347
40k
Java REST API Framework Comparison - PWX 2021
mraible
33
8.8k
Large-scale JavaScript Application Architecture
addyosmani
513
110k
How STYLIGHT went responsive
nonsquared
100
5.8k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
30
9.7k
Rebuilding a faster, lazier Slack
samanthasiow
84
9.2k
4 Signs Your Business is Dying
shpigford
185
22k
A designer walks into a library…
pauljervisheath
208
24k
Making Projects Easy
brettharned
118
6.4k
Transcript
None
DESENVOLVIMENTO IOS
DESENVOLVIMENTO IOS Maurílio Henrique @mauriliohrc @objcgo
[email protected]
http://www.objcgo.com
OBJC - Sintaxe básica - Interface / Implementation - Métodos
- Visibilidade - Herança - Properties
OBJC
OBJC Antes de tudo! Lembre-se!
OBJC Antes de tudo! Lembre-se!
OBJC - Camada muito fina de componentes e bibliotecas na
linguagem C. - Mesma estrutura repetição, condicional, ponteiros, funções, tipos nativos (int,float,char,double)
OBJC
OBJC Interface
OBJC Interface Implementation
OBJC Seletores e Métodos visibilidade (retorno) nome : parametro1 nomeParametro2:
valor;
OBJC Visibilidade
OBJC Visibilidade Tudo que estiver na @interface é público .
OBJC Visibilidade Tudo que estiver na @interface é público .
Não existem métodos privados . (Sem POG)
OBJC Protocol
OBJC Protocol O conceito de Protocol no Objective-c é exatamente
o mesmo conceito de Interface no Java, C#, Delphi, php ...
OBJC Protocol
OBJC Protocol Criando
OBJC Protocol Criando Utilizando
OBJC Protocol Criando Utilizando
OBJC Protocol Criando Utilizando