我正在使用shareKit进行Facebook/Twitter分享,当点击facebookSharing按钮时,它会给我登录页面,但在首次登录后它只显示一个白色屏幕而什么都不做.我在SHKConfig.h上做了一些编辑,并输入了facebookKey和facebookSecret.
#define SHKFacebookUseSessionProxy NO
#define SHKFacebookKey @""
#define SHKFacebookSecret @""
#define SHKFacebookSessionProxyURL @"?"
Run Code Online (Sandbox Code Playgroud)
加载时,它只显示白屏......
第二个问题:实际上我应该给SHKFacebookSessionProxyURL字段,这是第一个问题吗?
我有一个mpmovieplayer控制器播放在线音乐和avaudiosession在背景播放相同的音乐,当第一次应用程序启动没有网络访问,通常我显示"没有互联网连接",当我尝试连接到互联网并播放后显示错误
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'An AVPlayerItem cannot be associated with more than one instance of AVPlayer'
Run Code Online (Sandbox Code Playgroud)
我的代码在这里
static MPMoviePlayerController *player=nil;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
{
// Custom initialization
[MainViewController stopStreaming];
player = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:@"http://159.253.145.180:7104"]];
player.movieSourceType = MPMovieSourceTypeStreaming;
player.view.hidden = YES;
[self.view addSubview:player.view];
[player prepareToPlay];
[player play];
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSError *setCategoryErr = nil;
NSError *activationErr = nil; …Run Code Online (Sandbox Code Playgroud) 我试图使用应用程序加载器更新我的应用程序.当我提交存档文件时,我收到此错误
"icon specified in the info.plist not found under the top level app wrapper.icon57.png"!
Run Code Online (Sandbox Code Playgroud)

我已从项目中删除了图标并再次尝试,但错误存在.他们是否有任何方法可以删除此错误?
我的info.plist显示这些图标 
使用我的iPhone应用程序实现警报的最佳方法是什么?NSTimer,还是DatePicker?帮我一些代码!