我正在尝试将 ShareKit 集成到我的 ios 游戏中。
一切正常,并且显示了操作表,我可以与之交互,但是当 sharekit 操作完成时(通过关闭操作表或完成任何操作),我无法将焦点返回到我的应用程序。
我已经尝试了几种方法,但任何一种都对我有用。发生了什么?我不是专业的程序员,所以我希望我错过了一些东西。
我是
这是我的.h
#import <UIKit/UIKit.h>
#import "SHK.h"
#import "SHKConfiguration.h"
@interface SocialWrapper: UIViewController{
}
- (id) init;
- (void) open;
- (void) dealloc;
@end
和.m
#import "SocializeWrapper.h"
@implementation SocialWrapper
- (id) init {
self=[super init];
DefaultSHKConfigurator *configurator = [[DefaultSHKConfigurator alloc] init];
[SHKConfiguration sharedInstanceWithConfigurator:configurator];
[SHK flushOfflineQueue];
return self;
}
- (void) open
{
NSString *someText = @"Hello Earth!";
SHKItem *item = [SHKItem text:someText];
// Get the ShareKit action sheet
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];
UIWindow *window = [UIApplication sharedApplication].keyWindow;
[window addSubview:self.view];
[SHK setRootViewController:self];
[actionSheet showInView:self.view];
}
- (void) dealloc {
NSLog(@"SHK dealloc");
[self release];
[super dealloc];
}
@end
我通过使用这个包装器来调用它
#import "SocializeWrapper.h"
SocialWrapper *socialize;
void SHKinit(void) {
NSLog(@"SHK Init");
socialize = [[SocialWrapper alloc] init];
}
void SHKopenWeb(void){
NSLog(@"SHK Open actionsheet");
[socialize open];
}
我正在使用 ios 5、xcode 4.3.2 和 git 的最后一个 sharekit 版本。
我认为一旦关闭操作表,我就必须关闭我的 SocialWrapper,但我不知道如何捕获该事件,或者即使这是正确的。我被困住了。
任何帮助将不胜感激。
更新
正如评论建议的那样,现在控制器位于一个类别上,使用操作表委托,单击取消的操作表按钮时可以重新获得焦点。当操作完成或取消时,问题仍然存在。不知道如何捕获该事件。
这是我的类别代码:
#import "SocialWrapper.h"
@implementation UIViewController (SocialController)
-(void) loadconfig
{
DefaultSHKConfigurator *configurator = [[DefaultSHKConfigurator alloc] init];
[SHKConfiguration sharedInstanceWithConfigurator:configurator];
[SHK flushOfflineQueue];
}
- (void) open
{
NSLog(@"Opening social button");
NSString *someText = @"Monkey Armada rules!";
SHKItem *item = [SHKItem text:someText];
// Get the ShareKit action sheet
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];
UIWindow *window = [UIApplication sharedApplication].keyWindow;
[window addSubview:self.view];
[actionSheet setDelegate:self];
[SHK setRootViewController:self];
[actionSheet showInView:self.view];
}
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex
{
NSLog(@"SHK actionsheet dissmiss with button %d", buttonIndex);
if(buttonIndex == 4)
{
NSLog(@"SHK close actionsheet");
[self dismissViewControllerAnimated:YES completion:nil];
[self.view removeFromSuperview];
}
}
@end