-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Navigation Bar Left Button now calls back to js & can be now be removed
- Loading branch information
1 parent
23d80ef
commit 7f88abc
Showing
4 changed files
with
58 additions
and
26 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// | ||
// screenShot.h | ||
// ObjC-Mix | ||
// | ||
// Created by Mike Seaby on 30/05/2011. | ||
// Copyright 2011 Mike Seaby. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
|
||
@interface screenShot : NSObject { | ||
|
||
} | ||
|
||
@end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// | ||
// screenShot.m | ||
// ObjC-Mix | ||
// | ||
// Created by Mike Seaby on 30/05/2011. | ||
// Copyright 2011 Mike Seaby. All rights reserved. | ||
// | ||
|
||
#import "screenShot.h" | ||
|
||
|
||
@implementation screenShot | ||
|
||
@end |