Skip to content

Instantly share code, notes, and snippets.

@bmoliveira
Last active May 10, 2016 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmoliveira/cb5dbb7117c70993e721 to your computer and use it in GitHub Desktop.
Save bmoliveira/cb5dbb7117c70993e721 to your computer and use it in GitHub Desktop.
class ExampleViewController: UIViewController {
@IBOutlet weak var collectionView: UICollectionView!
override func viewDidLoad() {
title = "Example title".localized()
collectionView.registerCell(ExampleCell)
}
}
Localization files example:
EN:
"Example title" = "Example title";
PT:
"Example title" = "Título para exemplo";
FR:
"Example title" = "Exemple titre";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment