With the CoreWLAN API you can do with the following code:
NSArray *airportInterfaces = [CWInterface supportedInterfaces];
if ([airportInterfaces count] <1 ){
NSRunCriticalAlertPanel(@"Error", @"Airport card no present", @"OK", nil, nil);
}
//Choose the desired interface . the first one will be enought for this example
NSString *interface =[airportInterfaces objectAtIndex:0];
CWInterface *airport = [CWInterface interfaceWithName:interface];
if (!airport){
NSRunCriticalAlertPanel(@"Error", @"Airport card no present", @"OK", nil, nil);
}
//We want to add a sample WPA2 Personal network
CWWirelessProfile *newProfile = [CWWirelessProfile profile];
[newProfile setSsid:@"SSID"];
[newProfile setSecurityMode:[NSNumber numberWithInt:kCWSecurityModeWPA2_PSK]];
[newProfile setPassphrase:@"verysecretpassword"];
CWConfiguration *conf = [airport configuration];
//We first add the profile to the remembered profile set when necessary
BOOL configChanged =NO;
NSSet *rememberedNetworks = [conf rememberedNetworks];
if (![ rememberedNetworks containsObject:newProfile]){
[conf setRememberedNetworks:[rememberedNetworks setByAddingObject:newProfile]];
configChanged =YES;
}
//We add to favorites network to allow the system automatically connect to it
NSArray *preferredNetworks = [conf preferredNetworks];
if (![preferredNetworks containsObject:newProfile]){
[conf setPreferredNetworks:[preferredNetworks arrayByAddingObject:newProfile]];
configChanged =YES;
}
if (!configChanged ){
return;
}
//Authorize
SFAuthorization *authorization = [SFAuthorization authorization];
BOOL authResult =[authorization obtainWithRight:"system.preferences"
flags:(kAuthorizationFlagExtendRights |
kAuthorizationFlagInteractionAllowed |
kAuthorizationFlagPreAuthorize)
error:NULL];
if (!authResult){
NSRunCriticalAlertPanel(@"Error", @"Auth failed", @"OK", nil, nil);
return ;
}
[airport setAuthorization:authorization];
NSError *err =nil;;
BOOL saved = [airport commitConfiguration:conf error:&err];
if (!saved && err){
[NSApp presentError:err];
return;
}
if (!saved){
NSRunCriticalAlertPanel(@"Error", @"Save error", @"OK", nil, nil);