An open API service indexing awesome lists of open source software.

https://github.com/nextfaze/soundcloud-player-webview

Objective C Sound cloud player using a UIWebView
https://github.com/nextfaze/soundcloud-player-webview

Last synced: over 1 year ago
JSON representation

Objective C Sound cloud player using a UIWebView

Awesome Lists containing this project

README

          

= soundcloud-player-webview

== Description

An Objective C interface for creating a sound cloud player UI.

== Integration within a project

git clone git://github.com/2moro/soundcloud-player-webview.git
cd soundcloud-player-webview
git submodule update --recursive --init

Drag the "Sound Cloud Player" group into your xcode project, or alternatively compile as a static library.

== Synopsis

// instantiate SCPlayerWebViewController and add its view as a subview
scpController = [[SCPlayerViewController alloc] initWithFrame:f];
scpController.delegate = self;
[scpController setClientKey:clientKey];
[self.view addSubview:v];

// loading tracks:
[scpController loadTrack:@"6872237"];

// load a permalink url
[scpController loadPermalink:@"http://soundcloud.com/iambrains/brains-onion-mix"];

// load from HTML tag.
// e.g.