ReactiveAccountStore 1.0.0

ReactiveAccountStore 1.0.0

测试已测试
语言语言 Obj-CObjective C
许可 MIT
发布最后发布2014年12月

Syo Ikeda维护。



支持 Accounts.frameworkReactiveCocoa

使用方法

请求访问并保存账户

ACAccountStore *accountStore = [[ACAccountStore alloc] init];
ACAccountType *type = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

[[[accountStore
    rac_requestAccessToAccountsWithType:type options:nil]
    concat:[RACSignal defer:^{
        ACAccount *account = [accountStore accountsWithAccountType:type][0];
        account.accountDescription = @"description";
        return [accountStore rac_saveAccount:account];
    }]] subscribeError:^(NSError *error) {
        // Failed to save or access was not granted.
    } completed:^{
        // Succeeded to save.
    }];

要求

  • iOS 6.0+
  • OS X 10.8+

安装

让我们使用 CocoaPods

将以下行添加到您的 Podfile 中

pod 'ReactiveAccountStore'

然后,在项目目录中运行以下命令

$ pod install

贡献者

Syo Ikeda, [email protected]

许可

ReactiveAccountStore 使用 MIT 许可。