- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
-(void)getTwittersFollowers{ ACAccountStore *store=[[ACAccountStore alloc]init]; ACAccountType *twitterAccType=[store accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
**[store requestAccessToAccountsWithType:twitterAccType withCompletionHandler:^(BOOL granted,NSError *error)**{
if(!granted){
NSLog(@"User refused to access to his account");
}else{
NSArray *twitterAcc=[store accountsWithAccountType:twitterAccType];
if([twitterAcc count]>0){
ACAccount *account=[twitterAcc objectAtIndex:0];
NSLog(@"account name %@",[account accountDescription]);
NSMutableDictionary *params=[[NSMutableDictionary alloc]init];
[params setObject:@"1" forKey:@"inclue_entitles"];
NSURL *url=[NSURL URLWithString:@"http://api.twitter.com/1/followers.json"];
//TWRequest *request=[[TWRequest alloc]initWithURL:url parameters:params requestMethod:TWRequestMethodGET];
SLRequest *request=[SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:url parameters:params];
[request setAccount:account];
[request performRequestWithHandler:^(NSData *responce,NSHTTPURLResponse *urlResponce,NSError *error){
if(!responce){
NSLog(@"%@",error);
}else{
NSError *jsonError;
NSMutableDictionary *followers=[NSJSONSerialization JSONObjectWithData:responce options:NSJSONReadingMutableLeaves error:&error];
if(followers!=nil){
for (int i=0; i<[[followers objectForKey:@"users"] count]; i++) {
NSLog(@"_____%@",[[[followers objectForKey:@"users"] objectAtIndex:i] objectForKey:@"screen_name"]);
NSLog(@"______________________________________%@",[[[followers objectForKey:@"users"] objectAtIndex:i] objectForKey:@"profile_image_url"]);
[nameArray addObject:[[[followers objectForKey:@"users"] objectAtIndex:i] objectForKey:@"screen_name"]];
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:[[[followers objectForKey:@"users"] objectAtIndex:i] objectForKey:@"profile_image_url"]]];
[imageArray addObject:imageData];
NSLog(@"%i", [imageArray count]);
}
}else{
NSLog(@"%@",jsonError);
}
}
}];
}
}
}];
我应该使用什么来代替突出显示的代码...?
最佳答案
尽管由于某些原因未在文档中明确提及,该方法的替代方法是 - (void)requestAccessToAccountsWithType:(ACAccountType *)accountType options:(NSDictionary *)options completion:(ACAccountStoreRequestAccessCompletionHandler)completion
(可以通过查看文档轻松找到)
关于twrequest - requestAccessToAccountsWithType 在 ios6.1 中已被弃用,我应该使用什么来代替?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18502648/
我正在开发一个应用程序来帮助我了解 OBJECTIVE-X/OSX。 该应用只需连接到 Facebook 并使用 NSUserNotification 发送通知。它工作正常,但现在我想添加一些 UI。
据我了解,当我调用 [ACAccountStore requestAccessToAccountsWithType:options:completion] 时,用户应该会看到一个 UIAlert,询问
当我运行 [_accountStore requestAccessToAccountsWithType: ...] 时,我没有收到任何响应。我的完成处理程序没有被调用。但是我确实可以访问 Twitte
我正在使用此代码连接到 Facebook。它是第一次工作。然后我进入我的设置应用程序并撤销权限。然后我回到我的应用程序并再次运行此代码。 granted 返回 NO 但 error 不包含任何数据,我
-(void)getTwittersFollowers{ ACAccountStore *store=[[ACAccountStore alloc]init]; ACAccountType *twit
我一直在搜索 Google 和 SO,但找不到 com.apple.accounts 错误代码 8 的含义。我正在尝试使用 iOS 6 和 Facebook SDK。 我运行这个请求; if (!
我是一名优秀的程序员,十分优秀!