Skip to content

Commit

Permalink
Remove outdated information
Browse files Browse the repository at this point in the history
  • Loading branch information
danielamitay committed Mar 2, 2015
1 parent 324cd2a commit bf3f7de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
18 changes: 3 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Example code:
```objective-c
iHasApp *detectionObject = [[iHasApp alloc] init];
[detectionObject detectAppDictionariesWithIncremental:^(NSArray *appDictionaries) {
NSLog(@"Incremental appDictionaries.count: %i", appDictionaries.count);
NSLog(@"Incremental appDictionaries.count: %i", (int)appDictionaries.count);
} withSuccess:^(NSArray *appDictionaries) {
NSLog(@"Successful appDictionaries.count: %i", appDictionaries.count);
NSLog(@"Successful appDictionaries.count: %i", (int)appDictionaries.count);
} withFailure:^(NSError *error) {
NSLog(@"Failure: %@", error.localizedDescription);
}];
Expand All @@ -62,21 +62,9 @@ This framework comes with an example application that demonstrates detection ini
The iHasAppExample project uses Olivier Poitrey's [SDWebImage](https://github.com/rs/SDWebImage) project to asynchronously display the app icons.
Documentation
--------------
The `iHasApp.h` header file is structurally commented. If you would like to see the Appledoc representation, visit the [iHasApp Documentation](http://www.ihasapp.com/documentation).
To-Do
--------------
- Comment code where appropriate
- Provide IPA processing code
- Informational methods
Info & Support
--------------
- Website: [iHasApp](http://www.ihasapp.com)
- Author: [Daniel Amitay](https://github.com/danielamitay)
- Email: hello@danielamitay.com
- Email: hello@danielamitay.com
6 changes: 3 additions & 3 deletions iHasApp/iHasApp.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
See http://www.iHasApp.com/ for information and updates.
*Requirements:* iOS base SDK 5.0+, Internet connectivity for app dictionary retrieval
*Requirements:* iOS base SDK 5.0+
*/
@interface iHasApp : NSObject
Expand Down Expand Up @@ -62,9 +62,9 @@
iHasApp *detectionObject = [[iHasApp alloc] init];
[detectionObject detectAppDictionariesWithIncremental:^(NSArray *appDictionaries) {
NSLog(@"Incremental appDictionaries.count: %i", appDictionaries.count);
NSLog(@"Incremental appDictionaries.count: %i", (int)appDictionaries.count);
} withSuccess:^(NSArray *appDictionaries) {
NSLog(@"Successful appDictionaries.count: %i", appDictionaries.count);
NSLog(@"Successful appDictionaries.count: %i", (int)appDictionaries.count);
} withFailure:^(NSError *error) {
NSLog(@"Failure: %@", error.localizedDescription);
}];
Expand Down

0 comments on commit bf3f7de

Please sign in to comment.