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
- Host: GitHub
- URL: https://github.com/nextfaze/soundcloud-player-webview
- Owner: NextFaze
- Created: 2011-02-04T07:12:30.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2011-03-31T04:09:09.000Z (about 15 years ago)
- Last Synced: 2025-02-01T08:48:44.836Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 204 KB
- Stars: 2
- Watchers: 20
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
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.