我是游戏开发的新手。我正在创建一个通过蓝牙连接的多人游戏。现在,在我的项目中,我正在使用 Game Kit 框架来检测可用的蓝牙设备。此可用蓝牙列表显示在GKPeerPicker
控制器中。但现在我想在UITableView
.
问问题
846 次
2 回答
-1
这是显示可供我们使用的蓝牙设备列表的最佳示例代码,他清楚地解释了
显示蓝牙设备列表
于 2013-03-21T04:56:39.110 回答
-1
-(void)centralManager:(CBCentralManager *)central didRetrievePeripherals:(NSArray *)peripherals{
NSLog(@"This is it!");
// store the list of devices in the NSArray and then go to table view delegates.
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [peripherals count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.selectionStyle = UITableViewCellSelectionStyleGray;
}
cell.textLabel.text = [peripherals objectAtIndex:indexPath.row];
return cell;
}
于 2013-03-21T04:57:59.030 回答