AVCaptureSession的beginConfiguration和commitConfiguration的苹果文档中写道
After calling beginConfiguration, you can for example add or remove outputs, alter the sessionPreset, or configure individual capture input or output properties.
我特别希望使用“配置输出属性”部分。特别是,我想使用原子配置更改来停止在一个AVCaptureMovieFileOutput上的记录,并开始在另一个
我试图将GData/YouTubeAPI集成到我的项目中,但我有点卡住了。我使用了这篇文章中提供的代码:
我的问题是,当GData服务完成从interwebs上获取数据时,函数'request:finishedWithFeed:error:‘没有被调用。
我的程序编译并运行--没有运行时错误出现。我还检查了一下,feedURL返回了一个有效的URL。我对此进行了调试,“service”确实设法返回值。
GDataServiceGoogleYouTube *service = [self youTubeService];
// feed id for user uploads
NSS
为了一次获取所有好友的详细信息,我使用了FQL查询和带有错误处理程序的FBRequestConnection将所有数据保存到一个数组中,即
- (void)fetchFriendDetails
{
NSString* query = [NSString stringWithFormat:@"SELECT uid,name,birthday_date,pic_square FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())"];
// Set up the query parame