Skip to content

hons82/THMoreFromDeveloper

Repository files navigation

THMoreFromDeveloper

Pod Version Pod Platform Pod License

This control can be used to show other Apps from a developer or a list of APPs that can be intresting to the user of a current APP.

Screenshots

iPhone Portrait iPhone Landscape

Installation

CocoaPods

Install with CocoaPods by adding the following to your Podfile:

platform :ios, '6.1'
pod 'THMoreFromDeveloper', '~> 0.1.1'

Note: We follow http://semver.org for versioning the public API.

Manually

Or copy the THMoreFromDeveloper/ directory from this repo into your project and add the following dependencies

Dependencies

Features

V0.1.X

  • Bugfix/Help #1

V0.0.X

Usage

#import "THMoreFromDeveloperModel.h"

@interface THMoreFromDeveloperCollectionViewController ()
@property (nonatomic,strong)THMoreFromDeveloperModel *model;
@end

- (void)viewDidLoad {
    [super viewDidLoad];
    self.model = [[THMoreFromDeveloperModel alloc] init];
    [[NSNotificationCenter defaultCenter] addObserver: self
                                             selector: @selector(appIdsLoaded:)
                                                 name:kMoreFromDeleveloperDone
                                               object: nil];
	// Load it with APPids
	[self.model loadAppIds:@[@"509943167",@"875251011",@"420636551",@"645859810",@"767319014"]];
	// Load it with a single Developer ID
	// [self.model loadDeveloperId:@"833472034"];
}

- (void)appIdsLoaded:(NSNotification* )notification {
    // Show data using [self.model jsonResults]
}

for more details please have a look at the Example. It shows how to integrate this classes with the rest of your project.

#Contributions

...are really welcome. If you have an idea just fork the library change it and if its useful for others and not affecting the functionality of the library for other users I'll insert it

License

Source code of this project is available under the standard MIT license. Please see the license file.

About

Control to show other APPs from a Developer

Resources

License

Stars

Watchers

Forks

Packages

No packages published