• Stars
    star
    466
  • Rank 92,208 (Top 2 %)
  • Language
    Objective-C
  • License
    Other
  • Created about 11 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

DAAppsViewController is a simple way of displaying apps from the App Store in an aesthetically similar manner.

DAAppsViewController

DAAppsViewController is a simple way of displaying apps from the App Store in an aesthetically similar manner. The user is able to view each app's App Store page by launching an instance of SKStoreProductViewController. Particularly useful for showing an app developer's other apps.

Screenshot

Installation

  • Copy over the DAAppsViewController folder to your project folder.
  • Add the StoreKit framework to your project.
  • #import "DAAppsViewController.h"

App Transport Security Settings

As of iOS 9.0, App Transport Security (ATS) is enforcing additional security requirements for HTTP-based networking requests. As a result, the images that DAAppsViewController attempts to load from Apple are unable to load without the proper exceptions. To make sure that everything works as expected, make sure to add the following settings to your app's Info.plist file. If your app has NSAllowsArbitraryLoads: true enabled, then this is unnecessary.

App Transport Security Settings

Usage

Example project included (DAAppsViewControllerExample)

Displaying apps by a specific developer (useful for "Our other apps")

DAAppsViewController *appsViewController = [[DAAppsViewController alloc] init];
[appsViewController loadAppsWithArtistId:356087517 completionBlock:nil];
[self.navigationController pushViewController:appsViewController animated:YES];

Displaying a predetermined set of apps

By appId:

NSArray *appsArray = @[@575647534,@498151501,@482453112,@582790430,@543421080];
DAAppsViewController *appsViewController = [[DAAppsViewController alloc] init];
appsViewController.pageTitle = @"Apps by XXX"; // Optional
[appsViewController loadAppsWithAppIds:appsArray completionBlock:nil];
[self.navigationController pushViewController:appsViewController animated:YES];

By bundleId:

NSArray *bundlesArray = @[@"com.flexibits.fantastical.iphone",@"com.samvermette.Transit",@"com.tripsyapp.tripsy",@"com.seatgeek.SeatGeek",@"com.bumptechnologies.flock.Release"];
DAAppsViewController *appsViewController = [[DAAppsViewController alloc] init];
[appsViewController loadAppsWithBundleIds:bundlesArray completionBlock:nil];
[self.navigationController pushViewController:appsViewController animated:YES];

Displaying apps for a specific App Store search term

DAAppsViewController *appsViewController = [[DAAppsViewController alloc] init];
[appsViewController loadAppsWithSearchTerm:@"Radio" completionBlock:nil];
[self.navigationController pushViewController:appsViewController animated:YES];

Notes

Compatibility

iOS 8.0+

Automatic Reference Counting (ARC) support

DAAppsViewController was made with ARC enabled by default.

Contact

If you use/enjoy DAAppsViewController, let me know!

License

MIT License

Copyright (c) 2013 Daniel Amitay (http://www.danielamitay.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

DACircularProgress

DACircularProgress is a UIView subclass with circular UIProgressView properties.
Objective-C
2,377
star
2

DAKeyboardControl

DAKeyboardControl adds keyboard awareness and scrolling dismissal (ala iMessages app) to any view with only 1 line of code.
Objective-C
1,577
star
3

iHasApp

The iHasApp iOS Framework allows you to detect installed apps on a user's device.
Objective-C
1,383
star
4

iOS-App-Performance-Cheatsheet

A collection of code substitutions and configurations that can improve Objective-C code performance on iOS.
771
star
5

DAAnisotropicImage

DAAnisotropicImage is an anisotropic UIImage generator. Specifically, for a metallic slider knob.
Objective-C
301
star
6

DAModularTableView

UITableView subclass that abstracts away the ugliness involved with creating static or modular UITableViews. Settings and menu pages are a snap to create with DAModularTableView.
Objective-C
222
star
7

DAReloadActivity

DAReloadActivity is a UIButton subclass (with a refresh arrow by default) with UIActivityIndicatorView properties.
Objective-C
171
star
8

DALinedTextView

DALinedTextView is a UITextView subclass that draws ruled lines to the view, similar to iOS' built-in Notes app. The lines conform to the appropriate line-height for the currently set UIFont.
Objective-C
159
star
9

DAAutoScroll

DAAutoScroll is a UIScrollView category that allows any chosen UIScrollView (or subclass thereof) to automatically scroll itself with adjustable speed. When the user interacts with the view, the scrolling automatically stops.
Objective-C
141
star
10

midjourney-ios

Midjourney iOS app
Swift
7
star
11

AppsView

AppsView is a simple SwiftUI view for displaying apps from the App Store in a similar UI/UX.
Swift
2
star
12

midjourney-swift

Swift package for interacting with Midjourney as a user.
Swift
1
star