Пытаясь использовать общий набор для отправки ссылки в твиттер, и когда веб-просмотр подходит для входа в твиттер, вы можете нажать на поля имени пользователя и пароля, получить курсор, но клавиатура не появляется.
Это действительно начинает меня расстраивать.
Вот как я пытаюсь вызвать Share kit. (из оповещения)
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
if (alertView.tag == 21){
if (buttonIndex == 1) {
//call SHK
NSLog(@"Calling SHK");
// Create the item to share (in this example, a url)
NSURL *url = [NSURL URLWithString:@"http://link.com"];
SHKItem *item = [SHKItem URL:url title:[NSString stringWithFormat:@"I just played a %d by %d board on #GAMENAME and solved it in %d moves!", down, across, turns]];
// Get the ShareKit action sheet
[alertView dismissWithClickedButtonIndex:0 animated:NO];
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];
// Display the action sheet
[actionSheet showInView:self.view];
}
}