Tag: sdk

Google Drive Sdk – iOS应用程序中的audio和videostream式传输

您好Google Drive员工, 我试图从Google云端硬盘 (不下载) stream式传输video文件 。 但是我收到警报Sign In。 我已经彻底与编辑示例应用程序,但我没有find任何解决scheme。 我尝试了downloadUrl,embedLink,webContentLink,alternateLink 。 所有提供消息login。 当我试着与exportsLinks我得到一个空消息 。 这里有什么问题。 如果你有任何build议请让我知道… 我已经尝试过使用iPod中的Google Drive for iOS,我们可以在无需下载的情况下对video进行stream式传输。 请build议我解决这个问题 提前致谢…

iPad上的捕捉视图上下文质量较差

我需要捕获具体的UIView,但结果是在低质量如何解决这个问题,并提高质量? UIGraphicsBeginImageContext(captureView.bounds.size); [captureView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *screenshot = UIGraphicsGetImageFromCurrentImageContext(); UIImageWriteToSavedPhotosAlbum(screenshot, nil, nil, nil); UIGraphicsEndImageContext();

IOS:如何使用Google驱动器sdk库将file upload到特定的Google驱动器文件夹

我将Google驱动器SDK与我的iOS应用程序集成在一起。 但我不知道如何上传文件到Google驱动器的特定文件夹。 这里是用来上传文件的代码。 但是这个file upload到我的谷歌驱动器根文件夹。 任何一个共享代码上传文件到谷歌驱动器的特定文件夹? 我的代码: -(void)uploadFileToGoogleDrive:(NSString*)fileName { GTLDriveFile *driveFile = [[[GTLDriveFile alloc]init] autorelease]; driveFile.mimeType = @"application/pdf"; driveFile.originalFilename = @"test.doc"; driveFile.title = @"test.doc"; NSString *filePath = [LocalFilesDetails getUserDocumentFullPathForFileName:fileName isSignedDocument:YES]; GTLUploadParameters *uploadParameters = [GTLUploadParameters uploadParametersWithData:[NSData dataWithContentsOfFile:filePath] MIMEType:@"application/pdf"]; GTLQueryDrive *query = [GTLQueryDrive queryForFilesInsertWithObject:driveFile uploadParameters:uploadParameters]; [self.driveService executeQuery:query completionHandler:^(GTLServiceTicket *ticket, GTLDriveFile *updatedFile, NSError *error) { if (error == […]

如何使用iOS上的Google Drive API处理电子表格

我正在尝试编写一个将其数据库存储在Google电子表格中的iPhone应用程序。 我遵循了DrEdit示例,该示例使用Drive API将纯文本文件读取/写入Google Drive。 我试图修改示例应用程序来处理电子表格。 我能够上传一个CSV文件,并要求Google将其转换。 不过,我真正想要的是直接使用mimeType:“application / vnd.google-apps.spreadsheet”。 我很新,如果有人能指点我一个例子,这将是非常有帮助的。 对于初学者,我想达到如下的东西 – (void)uploadSpreadSheetWithThreeCells { GTLUploadParameters *uploadParameters = nil; NSString *data = @"cell1,cell2,cell3"; NSData *spreadSheetContent = nil; /* How to initialize spreadSheetContent with data? */ [GTLUploadParameters uploadParametersWithData:spreadSheetContent MIMEType:@"application/vnd.google-apps.spreadsheet"]; GTLQueryDrive *query = [GTLQueryDrive queryForFilesInsertWithObject:self.driveFile uploadParameters:uploadParameters]; [self.driveService executeQuery:query completionHandler:nil]; } 另外,Google Drive API是否正确? 最终,我希望能够更新电子表格的选定单元格,而不是上传整个文档。 我发现了一些其他选项,例如gdata api和电子表格api,但似乎Drive API是最新的,它应该包含另外两个的function? 提前致谢!

如何在Xcode 4.5上安装iOS 4.3 Simulator?

我通过App Store安装了Xcode 4.5,它支持iOS 5.1和6.0,但不支持iOS 4.3。 也不能在“首选项”的“下载”选项卡中下载。 我尝试从另一台电脑上抓取它,并按照Dominik Porada的描述把它放在这个电脑上,但是唉,那不起作用。 也许有我需要的其他文件? 我如何获得iOS 4.3 SDK?

带有标准UI的iOS上的Twitter SDK

我正在寻找SDK将Twitter整合到我的iOS应用程序中。 我做了研究,似乎MGTwitterEngine是大多数人推荐的。 但是,MGTwitterEngine仅提供对Twitter API的访问权限,但不提供对UI的访问权限。 我也看了一些与Twitter集成的iPhone应用程序,比如SCVNGR,FriendsAroundMe,Hashable,它们都有相同的login页面。 但是,我找不到这些应用程序使用的SDK。 我不知道是否有任何SDK发布(从Twitter是最好的),其中包括与标准的UI实施的SDK和一些演示代码。 谢谢你的build议。 史蒂夫

核心数据:UIManagedDocument或AppDelegate来设置核心数据堆栈?

我有点困惑在哪里设置我的核心数据堆栈。 在Appdelegate或使用UIManagedDocument的共享实例,在这里描述?: http ://adevelopingstory.com/blog/2012/03/core-data-with-a-single-shared-uimanageddocument.html 现在我已经在我的AppDelegate中设置了核心数据堆栈,并且在视图控制器之间传递我的MOC。 但是最好是迁移到UIManagedDocument并创build一个共享实例,所以我不必一直通过MOC? 还因为它更新?

如何使一个多行,左alignment的UIAlertView?

我有兴趣做一个左alignment的UIAlertView像几个公告列表,看起来像下面这样: 第1行 2号线 第3行 以下是我到目前为止: alert = [[UIAlertView alloc] initWithTitle: @"How to use buttons" message: @"line 1. line 2, line 3 " delegate: nil cancelButtonTitle: @"OK" otherButtonTitles: nil]; 我也想改变警报视图的颜色为红色。

Linkedin iOS身份validation需要启动Linkedin应用程序

我有一个问题整合LinkedIn SDK与我的iOS应用程序。 看来authentication过程要求我下载LinkedIn应用程序来连接LinkedIn。 有没有办法使用sdk而无需下载LinkedIn应用程序? 苹果拒绝了这个原因的应用程序。 我非常感谢有关解决此问题的任何提示。 提前致谢

IOS中的单点login身份validation需要LinkedIn应用程序

我们已经迁移到最新的LinkedIn IOS SDK,它只支持单点login(SSO)身份validation,并与官方LinkedIn移动应用程序结合使用。 我们的应用程序运行得非常好,但是苹果不会批准我们的最新版本,因为它需要安装LinkedIn应用程序才能使validation正常工作。 我们需要一个解决scheme,在LinkedIn应用程序不存在的情况下处理场景,以使用Web身份validation。但LinkedIn非常具体,声明支持移动SDK的应用程序需要将官方LinkedIn iOS应用程序安装在设备上才能正常工作“ https: //developer.linkedin.com/docs/ios-sdk – Mobile SDK于7月份发布,因此假设我们并不是唯一因苹果authentication而拒绝我们的应用程序。