dlfcn.h ライブラリを使用して、Apple80211 プライベート フレームワークを使用することをお勧めします。iPhone の例は次の場所にあります。
http://www.csse.uwa.edu.au/~chris/iphone/APlogger/
ソース ファイルをダウンロードし、スキャナー モジュールを調査します。
要約すると、次のようなものになります。
#define IF_NAME "en0"
#include <dlfcn.h>
- (void)performScan
{
int (*open)(void *);
int (*bind)(void *, NSString *);
int (*close)(void *);
int (*scan)(void *, NSArray **, void *);
void *libHandle;
void *airportHandle;
libHandle = dlopen("/System/Library/Frameworks/Preferences.framework/Preferences", RTLD_LAZY);
open = dlsym(libHandle, "Apple80211Open");
bind = dlsym(libHandle, "Apple80211BindToInterface");
scan = dlsym(libHandle, "Apple80211Scan");
close = dlsym(libHandle, "Apple80211Close");
open(&airportHandle);
bind(airportHandle, @IF_NAME);
NSArray *found;
NSDictionary *params = [[NSDictionary alloc] init];
scan(airportHandle, &found, params);
int nnw = [found count];
for(int i=0 ; i < nnw ; i++) {
NSDictionary *nw = [found objectAtIndex:i];
NSString *ssid = [self fixSSID:nw];
// RSSI indicates signal strength
int rssi = [[nw objectForKey:@"RSSI"] intValue];
}
// Cleanup
close(airportHandle);
dlclose(libHandle);
}
-(NSString *)fixSSID:(NSDictionary *)nw
{
if ([[nw objectForKey:@"HIDDEN_NETWORK"] boolValue])
return @"<hidden>";
else
return [nw objectForKey:@"SSID_STR"];
}
iOS アプリでプライベート フレームワークを使用する場合、それらを App Store で公開できないことに注意してください (Apple80211 フレームワークの公開ドキュメントがないため、Apple はアプリを拒否します)。しかし、あなたの質問はOSX開発に関するものであるため、これはあなたのケースには当てはまりません.
それが役に立てば幸い。