Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #197

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#equinociOS
# equinociOS

No dia 20 de março acontece o [Equinócio](https://pt.wikipedia.org/wiki/Equinócio)*! Para celebrarmos este evento, iremos escrever, a partir do primeiro dia do mês, 20 artigos sobre temas de conhecimento elemental que qualquer desenvolvedor iOS deve dominar.

Expand Down
6 changes: 3 additions & 3 deletions _posts/2016-03-18-ibeacon.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ Após criar a interface, um ultimo ajuste antes de partir pro código: importe o
Pronto, agora já podemos importar os framewoks no `ViewController.m`:

~~~objc
#import <CoreLocation/CoreLocation.h>
#import <CoreBluetooth/CoreBluetooth.h>
# import <CoreLocation/CoreLocation.h>
# import <CoreBluetooth/CoreBluetooth.h>
~~~

A classe terá a seguinte interface:
Expand Down Expand Up @@ -211,7 +211,7 @@ O modelo do app da Loja XPTO é o mesmo do anterior, então mãos à obra! O pro
Importe o `CoreLocation.framework` para o projeto e o adicione no `ViewController.m`. A interface da classe vai ficar assim:

~~~objc
#import <CoreLocation/CoreLocation.h>
# import <CoreLocation/CoreLocation.h>

@interface ViewController () <CLLocationManagerDelegate>
{
Expand Down
10 changes: 5 additions & 5 deletions _posts/2016-03-23-introducao-sobre-runtime-em-objective-c.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,17 +174,17 @@ Resumidamente, será implementado o método `extensionViewDidAppear:` (que conte
O primeiro passo é criar uma categoria e importar a biblioteca `<objc/runtime.h>`:

~~~objc
#import "UIViewController+Swizzling.h"
# import "UIViewController+Swizzling.h"

#import <objc/runtime.h>
# import <objc/runtime.h>

@implementation UIViewController (Swizzling)
~~~

O método a seguir aplicará a técnica Swizzling propriamente dita:

~~~objc
#pragma mark - Swizzling viewDidAppear:
# pragma mark - Swizzling viewDidAppear:

+ (void)swizzlingViewDidAppear {
}
Expand Down Expand Up @@ -245,7 +245,7 @@ if (didAddMethod) {
Agora é preciso escrever o método `extensionViewDidAppear:` propriamente dito:

~~~objc
#pragma mark - viewDidAppear: extension
# pragma mark - viewDidAppear: extension

- (void)extensionViewDidAppear:(BOOL)animated {

Expand All @@ -260,7 +260,7 @@ Lembre-se que após terminar a implementação é preciso chamar o método origi
Para finalizar, é necessário chamar o método `swizzlingViewDidAppear` no método `load`, que por sua vez é chamado assim que a classe for inicializada:

~~~objc
#pragma mark - Load
# pragma mark - Load

+ (void)load {

Expand Down
4 changes: 2 additions & 2 deletions _posts/2016-03-26-criando-frameworks.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ Caso fosse necessário no futuro diversificar o que esta disponível para cada p

~~~swift

#if os(tvOS)
# if os(tvOS)

// Código que será disponível apenas para tvOS

#endif
# endif

if #available(tvOS 9.1, *) {
// Código disponível apenas para tvOS 9.1 para frente
Expand Down
Loading