Sie sind auf Seite 1von 8

NavigationBar

http://timdietrich.me/blog/swift-ios-customizing-navigation-and-tab-bar-appearance/

http://stackoverflow.com/questions/24687238/changing-navigation-bar-color-in-swift

Background com imagem

http://stackoverflow.com/questions/34111443/how-to-add-background-image-and-let-
it-under-uitableviewcell-in-swift

http://stackoverflow.com/questions/25106784/how-to-set-a-background-image-as-
colorwithpatternimage-in-swift

https://teamtreehouse.com/library/implementing-designs-for-iphone/implementing-
custom-login-and-sign-up-screens/adding-background-images-and-positioning-views

Formatao de dinheiro

http://supereasyapps.com/blog/2016/2/8/how-to-use-nsnumberformatter-in-swift-to-
make-currency-numbers-easy-to-read

ScrollView

https://www.youtube.com/watch?v=b9bS7H-mYe4

http://stackoverflow.com/questions/20630059/why-uiscrollview-is-leaving-space-from-
top-in-ios-6-and-ios-7

https://www.youtube.com/watch?v=rjTS9fyWqdg

Placeholder TextView

https://www.youtube.com/watch?v=dEGFADjp_q0

http://stackoverflow.com/questions/32468631/swift-couldnt-add-button-dynamically-
to-a-scroll-view (Adicionar button dinamicamente)

Loading
https://coderwall.com/p/su1t1a/ios-customized-activity-indicator-with-swift

https://github.com/peterprokop/SwiftOverlays

http://www.ioscreator.com/tutorials/progress-view-tutorial-in-ios8-with-swift

http://rshankar.com/swift-demo-add-progress-bar/

TableView

http://stackoverflow.com/questions/27760212/swift-uitableview-set-separator-style

Chamar uma scene programaticamente

http://stackoverflow.com/questions/30773529/open-new-view-controller-by-clicking-
cell-in-table-view-swift-ios

https://www.youtube.com/watch?v=zAWO9rldyUE

TableView com cell pela XIB

http://stackoverflow.com/questions/25541786/custom-uitableviewcell-from-nib-in-swift

http://stackoverflow.com/questions/28489720/uitableviewcell-subclass-with-xib-swift

Converter String para Int

http://stackoverflow.com/questions/24115141/swift-converting-string-to-int

Mostrar imagem de uma URL em uma ImagemView

http://stackoverflow.com/questions/29472149/swift-how-to-display-an-image-using-url

http://stackoverflow.com/questions/24231680/loading-downloading-image-from-url-
on-swift

http://www.kaleidosblog.com/uiimage-from-url-with-swift

https://teamtreehouse.com/community/does-anyone-know-how-to-show-an-image-
from-url-with-swift
Programa para ver banco de dados

https://www.quora.com/What-is-the-best-MySQL-client-for-Mac-OS-X-or-Windows

SWIFT

http://iswift.org

SQLite

http://www.techotopia.com/index.php/An_Example_SQLite_based_iOS_8_Applicatio
n_using_Swift_and_FMDB

https://www.sitepoint.com/managing-data-in-ios-apps-with-sqlite/ ( ao adicionar o
SQLite tem que apertar Command + B) -
https://github.com/stephencelis/SQLite.swift

http://www.theappguruz.com/blog/use-sqlite-database-swift

https://www.raywenderlich.com/123579/sqlite-tutorial-swift

Toast

https://github.com/scalessec/Toast-Swift

Navigation Drawer

https://github.com/dekatotoro/SlideMenuControllerSwift

https://www.raywenderlich.com/78568/createslideout
navigationpanelswift

http://swiftdeveloperblog.com/leftsidemenunavigation
drawerexamplewithswift/

http://www.appcoda.com/sidebarmenuswift/

Executar tarefas fora da Thread principal

http://stackoverflow.com/questions/28302019/gettingathis
applicationismodifyingtheautolayoutengineerror
http://stackoverflow.com/questions/24092786/usingdispatch
asyncwithself(verrespostaSwift3)

https://www.hackingwithswift.com/read/9/4/backtothemain
threaddispatch_get_main_queue

https://www.raywenderlich.com/79149/grandcentraldispatch
tutorialswiftpart1

Pegar verso do app

http://stackoverflow.com/questions/7608632/howdoigetthe
currentversionofmyiosprojectincode

Abrir navegador

https://www.hackingwithswift.com/examplecode/system/howto
openaurlinsafari

http://stackoverflow.com/questions/28010518/swiftopenweb
pageinappbuttondoesntreact

TextField estilo password

http://stackoverflow.com/questions/26064315/hidepassword
withinatextfield

https://www.hackingwithswift.com/examplecode/uikit/howto
hidepasswordsinauitextfield

UIAlertController

http://sourcefreeze.com/uialertcontrollerios8usingswift/

http://nshipster.com/uialertcontroller/

http://useyourloaf.com/blog/uialertcontrollerchangesinios
8/*

Ttulo da tela

http://stackoverflow.com/questions/25167458/changing
navigationtitleprogrammatically(asegundaopodoexemplo
mudaottulodobotoback)

FloatLabel (?) - no testei

https://github.com/Skyscanner/SkyFloatingLabelTextField
Validao de TextField (?) - no testei

http://stackoverflow.com/questions/30574484/displaying
validationerroroniosuitextfieldsimilartoandroids
textviewset

Mascara para TextField (?) - no testei

http://hackersome.com/p/artemkrachulov/AKMaskField

Retornar para a ViewController principal

self.navigationController?.popToRootViewControllerAnimated(true)

http://stackoverflow.com/questions/37948650/swift-how-to-return-to-
the-initial-view-controller-if-there-is-no-navigation-co (sem
navigationController)

http://stackoverflow.com/questions/29036138/how-to-force-back-
button-to-go-to-first-view-controller-swift

https://spin.atomicobject.com/2015/04/23/unwind-segue-set-
destination/

PopViewToController

http://stackoverflow.com/questions/28190070/swift-
poptoviewcontroller

http://stackoverflow.com/questions/31878108/ios-swift-
poptoviewcontroller-by-name

Auto-dimesionamento da cell

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath)


-> CGFloat {
return UITableViewAutomaticDimension;
}

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath:


IndexPath) -> CGFloat {
return UITableViewAutomaticDimension;
}

http://stackoverflow.com/questions/30299319/why-
uitableviewautomaticdimension-not-working (com dica para fazer funcionar,
definir as constraint)

http://stackoverflow.com/questions/29565078/uitableviewautomaticdimension-
not-working-in-xcode-6-3

DropDonw list (?)

http://stackoverflow.com/questions/32427823/combobox-component-for-swift-
failed-with-downpicker

https://github.com/Darkseal/DownPicker

https://github.com/hyperoslo/Dropdown

https://github.com/davecom/DKDropMenu

Alternativa para DownList

https://www.youtube.com/watch?v=aj92JFosapk

UIDataPickerView

https://www.youtube.com/watch?v=oHkEUibsShM

https://www.youtube.com/watch?v=DgHEL1bWQ58

http://codewithchris.com/uipickerview-example/

https://www.youtube.com/watch?v=SfjZwgxlwcc

http://sourcefreeze.com/ios-uipickerview-example-using-swift/

Link para estudos

http://agencia.yesbr.com.br/categoria/aplicativos/page/2/

Customizar UINavigationBar

https://www.youtube.com/watch?v=RO8_mqRJO-4

PopOver
https://www.youtube.com/watch?v=48UA06EwfrM

https://www.youtube.com/watch?v=Cb7JYIq2yyA

https://richardallen.me/2014/11/28/popovers.html

Switch

https://www.tutorialspoint.com/swift/switch_statement.htm

Ao em boto e elementos programaticamente

http://stackoverflow.com/questions/24814646/attach-parameter-to-button-addtarget-
action-in-swift

Foco em TextField

http://timdietrich.me/blog/swift-set-focus-to-uitextfield/

Toolbar em TextField

https://gist.github.com/jplazcano87/8b5d3bc89c3578e45c3e

Para fazer um deploy e rodar num aparelho iPhone e fazer embedded de um


framework

No Xcode vai em:

Clica no projeto > Build Settings > Procura por Build Options > Muda Always
Embed Swift Standard Libraries para YES

AddSubView por uma View de arquivo XIB

https://www.youtube.com/watch?v=EBYdsYwoJVI

https://www.youtube.com/channel/UCFQKBD-GEwrGu3wBN_0yA7Q

Enviando um app para a Apple Store

http://play.beapp.com.br/suporte/passo-a-passo-para-publicar-um-aplicativo-ios-na-
apple-store/

http://www.williamcleissondecarvalho.com.br/2015/09/18/publicando-um-aplicativo-
na-apple-store/

https://www.youtube.com/watch?v=4QaBA09jCXk

Gerando o .ipa do app

http://www.williamcleissondecarvalho.com.br/2015/09/18/gerando-o-ipa-do-
aplicativo-com-xcode/

Icon launcher

http://stackoverflow.com/questions/28170520/ios-how-to-set-app-icon-and-launch-
images

https://makeappicon.com

Sites importantes para publicar app

https://idmsa.apple.com/IDMSWebAuth/login?
appIdKey=891bd3417a7776362562d2197f89480a8547b108fd934911bcbea0110d07
f757&path=%2Faccount%2F&rv=1

https://itunesconnect.apple.com/login

Screen

http://stackoverflow.com/questions/24110762/swift-determine-ios-screen-size

Button

http://stackoverflow.com/questions/15269971/aligning-a-uibuttons-text (Padding)

Das könnte Ihnen auch gefallen