Tag: 叽叽喳喳

在xcode中开发的应用程序的64位Twitter框架

之前,我已经创build了包含twitter API的32位xcode应用程序,但是现在,由于苹果公司对应用程序的新要求是64位,我将xcode更新为xcode 6.1和ios 8.1版本,并对构build设置进行了更改。 .. Architectures:Standard Architecture(arm7,arm64) Valid Architectures:armv7 armv7s arm64 但是,现在出现错误,即 Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_OAConsumer", referenced from: objc-class-ref in SA_OAuthTwitterEngine.o "_OBJC_CLASS_$_OADataFetcher", referenced from: objc-class-ref in SA_OAuthTwitterEngine.o "_OBJC_CLASS_$_OAMutableURLRequest", referenced from: objc-class-ref in SA_OAuthTwitterEngine.o "_OBJC_CLASS_$_OARequestParameter", referenced from: objc-class-ref in SA_OAuthTwitterEngine.o "_OBJC_CLASS_$_OAToken", referenced from: objc-class-ref in SA_OAuthTwitterEngine.o ld: symbol(s) not found for architecture x86_64 clang: […]

获取Twitter的关注者,并关注ios7

我已经使用Twitter API来获得追随者和追随者。 我写这个代码。 获得追随者和追随者 -(void)getTwitterAccounts { ACAccountStore *accountStore = [[ACAccountStore alloc] init]; // Create an account type that ensures Twitter accounts are retrieved. ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter]; // let's request access and fetch the accounts [accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) { // check that the user granted us access and there were no […]