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
class Document | |
attr_accessor :sections | |
def initialize | |
@sections = [] | |
end | |
end | |
class Reader | |
# should be able to view documents |
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
@implementation MySharedThing | |
// Using method 1 | |
// | |
DEFINE_SHARED_INSTANCE_FOR_CLASS(MySharedThing) | |
// Using method 2 | |
// | |
+ (id)sharedInstance | |
{ |