0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RomoSDKをSwiftで使う。【必ずハマるエラーとその解決法】

Last updated at Posted at 2014-11-09

#概要

RomoSDKをXcode6で使うとき、RMCharacterは問題なく使えるのですが、RMCoreをimportしてビルドするとエラーがでます。

ここではそのエラーの解決法を紹介したいと思います。

導入編はこちら
http://qiita.com/ken0nek/items/ccdfefe274bd00203957

#エラー状況

RMCoreをBridging-HeaderでimportしてからビルドするとRMCoreControllerPID.h内で以下の様なエラーが出ます

Screen Shot 2014-11-09 at 14.05.25.png

とにかく、"I"がいけないようです。

#エラーの解決方法

Bridging-Header内のRomoSDKをimportする前に

#undef I

と書き、Bridging-Header内を以下のようにするとビルドできる様になります。

#undef I

#import <RMCharacter/RMCharacter.h>
#import <RMCore/RMCore.h>

#確認

Bridging-Headerを書き換えてから、実行すると

Screen Shot 2014-11-09 at 14.29.50.png

できました!

#参考

Romo Developer Community
https://www.facebook.com/groups/1429438217333021/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?