Rubymotion を RestKit の RKObjectManager と連携させ、サーバーからいくつかのオブジェクトを正常にロードした人はいますか? 私はそれに多くの問題を抱えています。RestKit の RKClient がうまく機能しています。正常に取得して投稿できます。これは素晴らしいことです。しかし、RKObjectManager でリソースを読み込めません。私のRakefileは次のようになります。
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'RestKitTest'
app.frameworks += %w(CoreData CFNetwork Security MobileCoreServices SystemConfiguration QuartzCore)
app.vendor_project('vendor/RestKit', :xcode, :target => 'RestKit', :headers_dir => '../Headers/RestKit/')
end
私のアプリデリゲートは次のようになります:
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
@window = UIWindow.alloc.initWithFrame UIScreen.mainScreen.bounds
@window.rootViewController = TestViewController.alloc.init
@window.rootViewController.wantsFullScreenLayout = true
@window.makeKeyAndVisible
true
end
end
私のスタブ TestViewController は次のようになります。
class TestViewController < UIViewController
def init
super
puts "checkpoint 1"
manager = RKObjectManager.managerWithBaseURLString "http://mlpong.herokuapp.com"
puts "checkpoint 2"
mapping = RKObjectMapping.mappingForClass League.class
puts "checkpoint 3"
# mapping.mapAttributes("id", "name", "url", nil)
mapping.mapKeyPath("id", toAttribute:"id")
mapping.mapKeyPath("name", toAttribute:"name")
mapping.mapKeyPath("url", toAttribute:"url")
puts "checkpoint 4"
manager.mappingProvider.setObjectMapping(mapping, forKeyPath:"")
puts "checkpoint 5"
manager.loadObjectsAtResourcePath("/leagues.json?auth_token=my_auth_token", delegate:self)
puts "checkpoint 6"
self
end
def objectLoader(loader, didFailWithError:error)
puts "failed with error: #{error.domain}"
end
def objectLoader(loader, didLoadObjects:objects)
puts "success!"
end
end
残念ながら、サイトの認証トークンが必要になるため、この正確なコードでテストすることはできません。
RKObjectMappingクラスのmapAttributesメソッド(上記でコメントアウト) は機能しません。そのままにしておくと、アプリはチェックポイント 1 ~ 3 を出力してからフリークします。rake --traceはこれを明らかにします:
** Invoke default (first_time)
** Invoke simulator (first_time)
** Invoke build:simulator (first_time)
** Execute build:simulator
** Execute simulator
/usr/bin/defaults write com.apple.iphonesimulator "SimulateDevice" "'iPhone'"
DYLD_FRAMEWORK_PATH="/Applications/Xcode.app/Contents/Developer/../Frameworks":"/Applications/Xcode.app/Contents/Developer/../OtherFrameworks" /Library/RubyMotion/bin/sim 2 1 5.1 "/Applications/Xcode.app/Contents/Developer" "./build/iPhoneSimulator-5.1-Development/RestKitTest.app"
checkpoint 1
checkpoint 2
checkpoint 3
(main)> ** Execute default
mapAttributes 行をコメントアウトし、別の (より長い) バージョンのオブジェクト マッピング (チェックポイント 4 の前の 3 行はコメントなしのまま) を使用すると、すべてのチェックポイントを通過しますが、--trace をレーキすると次のようになります。
** Invoke default (first_time)
** Invoke simulator (first_time)
** Invoke build:simulator (first_time)
** Execute build:simulator
** Execute simulator
/usr/bin/defaults write com.apple.iphonesimulator "SimulateDevice" "'iPhone'"
DYLD_FRAMEWORK_PATH="/Applications/Xcode.app/Contents/Developer/../Frameworks":"/Applications/Xcode.app/Contents/Developer/../OtherFrameworks" /Library/RubyMotion/bin/sim 2 1 5.1 "/Applications/Xcode.app/Contents/Developer" "./build/iPhoneSimulator-5.1-Development/RestKitTest.app"
checkpoint 1
checkpoint 2
checkpoint 3
checkpoint 4
checkpoint 5
checkpoint 6
(main)> terminate called without an active exception** Execute default
私は一日中これらのエラーに悩まされています。誰かが何か考えを持っているなら、私に知らせてください。大変助かります。ありがとう、
パチュン