1

嗨,我想在同一个网络中找到所有使用我的应用程序的人,比如说如果它是一个 wifi 网络,那么我想让所有人在那个特定的网络中使用我的应用程序。

他们存在于我的数据库(mySQL)中的个人资料数据及其位置。我可以根据位置获取用户但我的问题是根据网络找到它们。任何想法如何开始这样做?

4

2 回答 2

1

我并不是说使用 Bonjour (Zeroconf) 是实现您想要的最佳方式 - 但您当然可以使用它来实现您的目标。

Bonjour 以两种方式使用: - 发布服务 - 检测(浏览)可用服务

对于你的任务,你必须同时做这两个。

可以在此处找到一个基本描述:Bonjour 概述及其在 iOS 中的应用

如果您决定使用 Bonjour,那么您会在Bonjour for Developers上找到大量文档

基本上,你需要发布一个服务:Bonjour Programming > Section 18.2。发布服务

发布类(通常appDelegate)也应该是一个NSNetService委托。

NSNetService *netService; //an ivar or a property

//creating and publishing a service
netService = [[NSNetService alloc] initWithDomain:@""
                                             type:@"_yourservicename._tcp."
                                             name:@""
                                             port:9876];
//if your app actually acts as a server port: should be it's port,
//otherwise it could be any free port

netService.delegate = self;
[netService publish];

您还应该处理委托方法(和一些appDelegate方法):

-(void)netService:(NSNetService *)aNetService
    didNotPublish:(NSDictionary *)dict
{
    NSLog(@"Service did not publish: %@", dict);
}

- (void)applicationWillTerminate:(UIApplication *)application {
    //---stop the service when the application is terminated---
    [netService stop];
}

- (void)applicationDidEnterBackground:(UIApplication *)application {
    //---stop the service when the application is paused---
    [netService stop];
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    [netService publish];
}

并浏览现有服务:您好!(cocoanetics) (你只需要页面的底部)

serviceBrowser = [[NSNetServiceBrowser alloc] init];
serviceBrowser.delegate = self;
[serviceBrowser searchForServicesOfType:@"_yourservicename._tcp." inDomain:@""];

- (void)netServiceBrowser:(NSNetServiceBrowser *)aNetServiceBrowser 
    didFindService:(NSNetService *)aNetService moreComing:(BOOL)moreComing
{
    [self willChangeValueForKey:@"foundServices"];
    [_foundServices addObject:aNetService];
    [self didChangeValueForKey:@"foundServices"];
 
    NSLog(@"found: %@", aNetService);
}
 
- (void)netServiceBrowser:(NSNetServiceBrowser *)aNetServiceBrowser 
    didRemoveService:(NSNetService *)aNetService moreComing:(BOOL)moreComing
{
    [self willChangeValueForKey:@"foundServices"];
    [_foundServices removeObject:aNetService];
    [self didChangeValueForKey:@"foundServices"];
 
    NSLog(@"removed: %@", aNetService);
}

PS:Bonjour 开始可能会很棘手,但它肯定是一个有用的知识。

取决于您到底想要什么样的用户体验。Bonjour 的一个很好的替代品肯定是GameKitGKPeerPickerController),用户可以在其中实际选择哪些设备(他想要连接的对等设备)。这应该在 Wi-Fi 或通过蓝牙中工作。

于 2013-02-05T12:47:55.907 回答
-1

进行服务发现的一种方法是让您的程序在端口上侦听,然后在您想要被发现或轮询其他实体时在该端口上进行广播。沿着这些思路。

 socket = listen_and_stuff()
 others = do_broadcast()
 while(run)
     if time to update
         others = do_broadcast
     if received request
         reply with info about self

但是,广播在一定程度上取决于路由器设置、子网等,因此它可能并非在所有情况下都有效。

于 2013-02-05T09:04:53.950 回答