我已经通过蓝牙以编程方式连接了两部iPhone。现在我想以编程方式知道我连接的设备的名称和设备的名称。
答案 0 :(得分:3)
获取设备名称:
[[UIDevice currentDevice] name];
获取其他设备的名称:
[instanceOfGKSession displayNameForPeer:peerID];
如果您使用initWithSessionID:displayName:sessionMode:
进行会话,则可以将该显示名称用作设备名称。
编程指南here。
答案 1 :(得分:1)
代表您设备的名称:
[[UIDevice currentDevice] name];