2

我正在使用 Multipeer 连接框架制作 iOS 7 应用程序,但我无法让两台设备相互识别。我浏览了文档和 wwdc 视频,除此之外,关于这个框架的信息非常有限。有没有人有使用新的点对点功能的经验并且可以提供帮助?

这基本上是我到目前为止所拥有的。browserVC 显示在屏幕上,但当我在两台设备上运行该应用程序时未找到任何设备。

MCPeerID *peer = [[MCPeerID alloc] initWithDisplayName:@"user"];
  _session =  [[MCSession alloc] initWithPeer:peer];
  NSString *service = @"nsync";

  _session.delegate = self;

  MCAdvertiserAssistant *assistant =[[MCAdvertiserAssistant alloc] initWithServiceType:service
                                                                         discoveryInfo:nil
                                                                               session:_session];
  [assistant start];


  MCBrowserViewController *browserVC = [[MCBrowserViewController alloc] initWithServiceType:service
                                                                                    session:_session];
  browserVC.delegate = self;
  [self presentViewController:browserVC
                     animated:YES
                   completion:nil];
4

4 回答 4

2

要让您的浏览器看到设备,您需要拥有一些其他正在投放广告的设备。我认为您的问题是您的 MCAdvertiserAssistant 超出范围并被释放,因为它仅存储在局部变量中。

这是我用来做广告的代码:

#define SERVICE_TYPE @"MyServiceType"
...

@property (nonatomic, strong) MCAdvertiserAssistant* advertiserAssistant;
...

self.peerId = [[MCPeerID alloc] initWithDisplayName:[[UIDevice currentDevice] name]];
self.advertiserSession = [[MCSession alloc] initWithPeer:self.peerId];
self.advertiserSession.delegate = self;
self.advertiserAssistant = [[MCAdvertiserAssistant alloc] initWithServiceType:SERVICE_TYPE discoveryInfo:nil session:self.advertiserSession];
[self.advertiserAssistant start];

请注意,我将广告客户助理存储在一个属性中,这样一旦创建它的方法完成,它就不会被释放。

并浏览:

self.peerId = [[MCPeerID alloc] initWithDisplayName:[[UIDevice currentDevice] name]];
self.browserSession = [[MCSession alloc] initWithPeer:self.peerId];
self.browserSession.delegate = self;
self.browser = [[MCBrowserViewController alloc] initWithServiceType:SERVICE_TYPE session:self.browserSession];
self.browser.delegate = self;
[self presentViewController:self.browser animated:YES completion:nil];
于 2013-09-18T22:40:59.050 回答
1

不要将 MCAdvertiserAssistant *assistant 声明为局部变量,声明为类成员。

于 2013-08-01T14:42:43.957 回答
0

我同意。一种对我有用的语法(至少让他们看到彼此;我仍然无法接受邀请...... :) 是:

@property   (strong, nonatomic) MCSession   *theSession;
@property   (strong, nonatomic) MCAdvertiserAssistant       *assistant;
@property   (strong, nonatomic) MCBrowserViewController     *browserVC;

再后来,

    UIDevice *thisDevice = [UIDevice currentDevice];

    MCPeerID *aPeerID = [[ MCPeerID alloc ] initWithDisplayName: thisDevice.name];
    self.theSession = [[ MCSession alloc ] initWithPeer: aPeerID ];
    self.theSession.delegate = self;

    self.assistant = [[MCAdvertiserAssistant alloc] initWithServiceType:kServiceType
                                                          discoveryInfo:nil
                                                                session:self.theSession ];
    self.assistant.delegate = self;
    [ self.assistant start ];

    self.browserVC = [[MCBrowserViewController alloc] initWithServiceType:kServiceType session:self.theSession];
    self.browserVC.delegate = self;
    [ self.window.rootViewController presentViewController:self.browserVC animated:YES completion:nil];

(必须使用rootViewController,因为我不是在我的主要 VC 中这样做的。)

于 2013-09-25T23:45:34.240 回答
0

我同意。

我昨天刚试过这个,它就像一个魅力。您的代码似乎是正确的,除了您的MCAdvertiserAssistant. 它应该设置为全局变量!

正如格雷格所说,您必须在至少与 wifi 或蓝牙连接的 2 台设备上运行您的应用程序(不需要互联网连接)。请注意,它不适用于蜂窝网络。

于 2013-09-19T11:45:54.213 回答