forked from danielamitay/iHasApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Full source code and dataset - Version 2.1 - Tag: Issue danielamitay#2
- Loading branch information
1 parent
3e24573
commit 154afe0
Showing
49 changed files
with
12,591 additions
and
52 deletions.
There are no files selected for viewing
Binary file removed
BIN
-17.7 KB
...oj/project.xcworkspace/xcuserdata/danielamitay.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
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 |
---|---|---|
@@ -1,28 +1,30 @@ | ||
Notice (Nov 13, 2012): | ||
----------- | ||
|
||
iHasApp's codebase and dataset will be open sourced within the week. Check back! | ||
|
||
iHasApp Framework | ||
========================= | ||
|
||
The iHasApp iOS Framework allows you to detect installed apps on a user's device. | ||
|
||
Detection results can be in the form of an array of detected appIds, or an array of appDictionaries from the iTunes Search API. | ||
Detection results can be in the form of an array of detected appIds, or an array of appDictionaries from the [iTunes Search API](http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html). | ||
|
||
Basic Setup | ||
![Screenshot](https://github.com/danielamitay/iHasApp/raw/master/screenshot.png) | ||
|
||
Background | ||
----------- | ||
|
||
1. Add iHasApp.framework to your project and ensure that it is linked to the project target. | ||
- [How To Detect Installed iOS Apps](http://danielamitay.com/blog/2011/2/16/how-to-detect-installed-ios-apps) - (Feb 2011) | ||
- [Detailed iPhone App IPA Statistics](http://danielamitay.com/blog/2011/5/9/detailed-iphone-app-ipa-statistics) - (May 2011) | ||
|
||
|
||
2. Add `#import <iHasApp/iHasApp.h>` to the classes in which you wish to access iHasApp. | ||
Basic Setup | ||
----------- | ||
|
||
1. Add the iHasApp subfolder to your project and ensure that it is linked to the project target. | ||
2. Add `#import "iHasApp.h"` to the classes in which you wish to access iHasApp. | ||
3. Initialize and begin detection methods. | ||
|
||
Example code: | ||
|
||
```objective-c | ||
iHasApp *detectionObject = [[iHasApp alloc] init]; | ||
iHasApp *detectionObject = [iHasApp new]; | ||
[detectionObject detectAppDictionariesWithIncremental:^(NSArray *appDictionaries) { | ||
NSLog(@"Incremental appDictionaries.count: %i", appDictionaries.count); | ||
} withSuccess:^(NSArray *appDictionaries) { | ||
|
@@ -36,7 +38,9 @@ Requirements | |
----------- | ||
- iOS base SDK 5.0+ | ||
- Internet connectivity | ||
- Internet connectivity (optional if schemeApps.json is included) | ||
*Note*: schemeApps.json only adds ~180kB to your final, compiled IPA | ||
App Store Safe | ||
-------------- | ||
|
@@ -57,9 +61,16 @@ 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: [email protected] | ||
- Website: [iHasApp](http://www.ihasapp.com) | ||
- Author: [Daniel Amitay](https://github.com/danielamitay) | ||
- Email: [email protected] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
3 changes: 2 additions & 1 deletion
3
...pp.framework/Versions/A/Headers/iHasApp.h → iHasApp/iHasApp.h
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
Oops, something went wrong.