RubyMotionでファイルをダウンロードして解凍する必要があります。私は例を探しましたが、このプロセスのどれも見つけることができませんでした。Rubymotion:iOSでZipファイルをダウンロードして抽出する
私は、リクエストからのすべてのデータである変数(@file)を持っています。そのデータをファイルに書き込んだ後に解凍し、圧縮されていないデータを保持し、tmp圧縮ファイルを削除する必要があります。ここで
は、私がこれまで持っているものです。
class LoadResourcesViewController < UIViewController
def viewDidAppear(animated)
@loading_bar = retrieve_subview_with_tag(self, 1)
req=NSURLRequest.requestWithURL(NSURL.URLWithString("#{someurl}"))
@connection = NSURLConnection.alloc.initWithRequest req, delegate: self, startImmediately: true
end
def connection(connection, didFailWithError:error)
p error
end
def connection(connection, didReceiveResponse:response)
@file = NSMutableData.data
@response = response
@download_size = response.expectedContentLength
end
def connection(connection, didReceiveData:data)
@file.appendData data
@loading_bar.setProgress(@file.length.to_f/@download_size.to_f)
end
def connectionDidFinishLoading(connection)
#create tmp file
#uncompress .tar, .tar.gz or .zip
#presist uncompresssed files and delete original tmp file
puts @file.inspect
@connection.release
solutionStoryboard = UIStoryboard.storyboardWithName("Master", bundle:nil)
myVC = solutionStoryboard.instantiateViewControllerWithIdentifier("Main3")
self.presentModalViewController(myVC, animated:true)
end
end
すべてのヘルプや例は、素晴らしいことです!
解決策を投稿してくれてありがとう! – sbauch