ios - 无法让 Rdio iOS SDK 播放工作
<p><p>我在搞乱 Rdio 的 iOS SDK。我已经在此处概述的“入门”中正确设置了所有内容 (<a href="http://www.rdio.com/developers/docs/libraries/ios/" rel="noreferrer noopener nofollow">http://www.rdio.com/developers/docs/libraries/ios/</a>)。应用程序委托(delegate)中的轨道键在我启动应用程序后工作和播放。</p>
<p>现在我正在尝试通过简单的 UIButton 点击来播放轨道,但我一辈子都无法让它工作。</p>
<p>我在 ViewController.h 中有这个</p>
<pre><code>#import <UIKit/UIKit.h>
#import <Rdio/Rdio.h>
@interface ViewController : UIViewController <RdioDelegate, RDPlayerDelegate>
@property (readonly) Rdio *rdio;
@end
</code></pre>
<p>在 ViewController.m 中</p>
<pre><code>- (IBAction)playButton:(UIButton *)sender
{
;
NSArray *sources = ;
;
}
</code></pre>
<p>非常感谢您的帮助!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我解决了我的问题。我的问题是我没有调用我的 App Delegate 中的初始化程序 initWithConsumerKey...。我也未能正确地将其设置为代表。 </p>
<p>所以我的 App Delegate 看起来像这样:</p>
<pre><code>#import "AppDelegate.h"
static AppDelegate *launchedDelegate;
@interface AppDelegate ()
@end
@implementation AppDelegate
+ (Rdio *)rdioInstance
{
return launchedDelegate.rdio;
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
launchedDelegate = self;
_rdio = [ initWithConsumerKey:@"removed" andSecret:@"removed" delegate:nil];
return YES;
}
</code></pre>
<p>在 ViewController.m 中:</p>
<pre><code>- (IBAction)listenButton:(UIButton *)sender
{
_rdio = ;
;
;
}
</code></pre>
<p>我一开始没有明白这一点,感觉很傻!把它放在这里以防它对任何人有帮助。</p></p>
<p style="font-size: 20px;">关于ios - 无法让 Rdio iOS SDK 播放工作,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28248822/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28248822/
</a>
</p>
页:
[1]