Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Bogus implementation example
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Schriewer committed Nov 19, 2012
1 parent 3621538 commit 15908ac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions StaticLibrary/StaticLibrary/StaticLibrary.h
Expand Up @@ -10,4 +10,8 @@

@interface StaticLibrary : NSObject

- (id)init;

@property (nonatomic, assign) NSUInteger aNumber;

@end
8 changes: 8 additions & 0 deletions StaticLibrary/StaticLibrary/StaticLibrary.m
Expand Up @@ -10,4 +10,12 @@

@implementation StaticLibrary

- (id)init {
self = [super init];
if (self) {
_aNumber = 42;
}
return self;
}

@end

0 comments on commit 15908ac

Please sign in to comment.