Skip to content

Commit

Permalink
Merge pull request adambard#942 from geoffliu/master
Browse files Browse the repository at this point in the history
[swift/pt-br] Remove an extra comma
  • Loading branch information
vendethiel committed Jan 28, 2015
2 parents 758b219 + 178e382 commit b3cd2ae
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions pt-br/swift-pt.html.markdown
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
language: swift
contributors:
- ["Grant Timmerman", "http://github.com/grant"],
- ["Grant Timmerman", "http://github.com/grant"]
- ["Christopher Bess", "http://github.com/cbess"]
translators:
- ["Mariane Siqueira Machado", "https://twitter.com/mariane_sm"]
lang: pt-br
filename: learnswift.swift
---

Swift é uma linguagem de programação para desenvolvimento de aplicações no iOS e OS X criada pela Apple. Criada para
Swift é uma linguagem de programação para desenvolvimento de aplicações no iOS e OS X criada pela Apple. Criada para
coexistir com Objective-C e para ser mais resiliente a código com erros, Swift foi apresentada em 2014 na Apple's
developer conference WWDC. Foi construída com o compilador LLVM já incluído no Xcode 6 beta.

Expand Down Expand Up @@ -59,9 +59,9 @@ let piText = "Pi = \(π), Pi 2 = \(π * 2)" // Interpolação de strings
println("Build value: \(buildValue)") // Build value: 7

/*
Optionals fazem parte da linguagem e permitem que você armazene um
Optionals fazem parte da linguagem e permitem que você armazene um
valor `Some` (algo) ou `None` (nada).
Como Swift requer que todas as propriedades tenham valores, até mesmo nil deve
ser explicitamente armazenado como um valor Optional.
Expand All @@ -76,7 +76,7 @@ if someOptionalString != nil {
if someOptionalString!.hasPrefix("opt") {
println("has the prefix")
}

let empty = someOptionalString?.isEmpty
}
someOptionalString = nil
Expand Down Expand Up @@ -289,7 +289,7 @@ print(numbers) // [3, 6, 18]
// Estruturas e classes tem funcionalidades muito similares
struct NamesTable {
let names: [String]

// Custom subscript
subscript(index: Int) -> String {
return names[index]
Expand Down Expand Up @@ -319,7 +319,7 @@ public class Shape {

internal class Rect: Shape {
var sideLength: Int = 1

// Getter e setter personalizado
private var perimeter: Int {
get {
Expand All @@ -330,39 +330,39 @@ internal class Rect: Shape {
sideLength = newValue / 4
}
}

// Carregue uma propriedade sob demanda (lazy)
// subShape permanece nil (não inicializado) até seu getter ser chamado
lazy var subShape = Rect(sideLength: 4)

// Se você não precisa de um getter e setter personalizado,
// mas ainda quer roda código antes e depois de configurar
// mas ainda quer roda código antes e depois de configurar
// uma propriedade, você pode usar `willSet` e `didSet`
var identifier: String = "defaultID" {
// o argumento `willSet` será o nome da variável para o novo valor
willSet(someIdentifier) {
print(someIdentifier)
}
}

init(sideLength: Int) {
self.sideLength = sideLength
// sempre chame super.init por último quand inicializar propriedades personalizadas (custom)
super.init()
}

func shrink() {
if sideLength > 0 {
--sideLength
}
}

override func getArea() -> Int {
return sideLength * sideLength
}
}

// Uma classe básica `Square` que estende `Rect`
// Uma classe básica `Square` que estende `Rect`
class Square: Rect {
convenience init() {
self.init(sideLength: 5)
Expand Down Expand Up @@ -420,10 +420,10 @@ protocol ShapeGenerator {

class MyShape: Rect {
var delegate: TransformShape?

func grow() {
sideLength += 2

if let allow = self.delegate?.canReshape?() {
// test for delegate then for method
// testa por delegação e então por método
Expand All @@ -439,7 +439,7 @@ class MyShape: Rect {

// `extension`s: Adicionam uma funcionalidade extra para um tipo já existente.

// Square agora "segue" o protocolo `Printable`
// Square agora "segue" o protocolo `Printable`
extension Square: Printable {
var description: String {
return "Area: \(self.getArea()) - ID: \(self.identifier)"
Expand All @@ -453,7 +453,7 @@ extension Int {
var customProperty: String {
return "This is \(self)"
}

func multiplyBy(num: Int) -> Int {
return num * self
}
Expand Down

0 comments on commit b3cd2ae

Please sign in to comment.