6.打開xib檔,預設的view是空空如也,在Library中尋找FBloginButton這個class,把它加進view之中




- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:@"facebooktestViewController" bundle:nibBundleOrNil]) {
if (kGetSessionProxy) {
_session = [[FBSession sessionForApplication:kApiKey getSessionProxy:kGetSessionProxy
delegate:self] retain];
} else {
_session = [[FBSession sessionForApplication:kApiKey secret:kAppSecret delegate:self] retain];
}
}
return self;
}
