-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathHPViewController.m
51 lines (40 loc) · 1.91 KB
/
HPViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// HPViewController.m
// HPSocialNetworkManager
//
// Created by Sarp Erdag on 12/3/12.
// Copyright (c) 2012 Hipo. All rights reserved.
//
#import "HPViewController.h"
#import "HPAccount.h"
@interface HPViewController ()
@end
@implementation HPViewController
- (void)viewDidLoad {
[super viewDidLoad];
[HPAccountManager sharedManager].delegate = self;
}
- (IBAction)didTapTwitterLoginButton {
[[HPAccountManager sharedManager] authenticateAccountOfType:HPAccountTypeTwitter
withHandler:^(HPAccount *authenticatedAccount, NSDictionary *profileInfo, NSError *error) {
if (error) {
NSLog(@"error: %@", error);
} else {
NSLog(@"%@", authenticatedAccount.identifier);
}
}];
}
- (IBAction)didTapFacebookLoginButton {
[[HPAccountManager sharedManager] authenticateAccountOfType:HPAccountTypeFacebook
withHandler:^(HPAccount *authenticatedAccount, NSDictionary *profileInfo, NSError *error) {
if (error) {
NSLog(@"error: %@", error);
} else {
NSLog(@"%@", authenticatedAccount.identifier);
}
}];
}
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex {
NSLog(@"Action sheet dismissed");
}
@end