Created
September 20, 2012 18:00
-
-
Save asmallteapot/3757396 to your computer and use it in GitHub Desktop.
Singletons in RubyMotion 1.4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://blog.rubymotion.com/post/31917526853/rubymotion-gets-ios-6-iphone-5-debugger | |
class STSomeAPIClient | |
def self.sharedClient | |
Dispatch.once { @instance ||= new } | |
@instance | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!