Updated iOS (markdown)

Hajime Hoshi 2016-08-01 23:54:27 +09:00
parent 35897aa22b
commit c4d730d725

8
iOS.md

@ -20,6 +20,14 @@ The below implementation implements a GLKView class and its Renderer class. When
For an actual example, see [go-inovation's ViewController.m](https://github.com/hajimehoshi/go-inovation/blob/master/mobile/ios/goinovation/ViewController.m). For an actual example, see [go-inovation's ViewController.m](https://github.com/hajimehoshi/go-inovation/blob/master/mobile/ios/goinovation/ViewController.m).
```objective-c
#import <UIKit/UIKit.h>
#import <GLKit/GLkit.h>
@interface ViewController : UIViewController <GLKViewDelegate>
@end
```
```objective-c ```objective-c
#import "ViewController.h" #import "ViewController.h"