我是Objective-C的中间人,我试图让这个应用程序返回可以在本地网络中建立的某种类型的UPnP设备。我使用UPnP Library,这是我的代码: 在viewDidLoad中,它使用已建立的UPnP对象初始化数组mDevice。
- (void)viewDidLoad
{
[super viewDidLoad];
UPnPDB* db = [[UPnPManager GetInstance] DB];
self.mDevices = [db rootDevices]; //BasicUPnPDevice
[db addObserver:(UPnPDBObserver*)self];
//Optional; set User Agent
//[[[UPnPManager GetInstance] SSDP] setUserAgentProduct:@"upnpxdemo/1.0" andOS:@"OSX"];
//Search for UPnP Devices
[[[UPnPManager GetInstance] SSDP] searchSSDP];
}
部分数量只有一个
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
在这里,我相信我的问题。我不能只返回我需要的设备类型。它返回所有已创建设备的行数,我想只返回指定的设备,我是BinaryLightDevice,我在下一个代码中从XML获取此信息。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [mDevices count];
}
此代码用于自定义表格视图单元格的外观。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
BasicUPnPDevice *device = [self.mDevices objectAtIndex:indexPath.row];
[[cell textLabel] setText:[device friendlyName]];
if([[device urn] isEqualToString:@"urn:schemas-upnp org:device:lightswitch:1"])
{
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
} else {
cell.accessoryType = UITableViewCellAccessoryNone;
}
return cell;
}
我希望单元格只返回灯开关设备的名称,谢谢!
EDIT:
您好,我已经在这里提出了一个问题但很难。我提到的是:如何将存储在一行中的对象返回到先前创建的另一个对象?但我想在声明表视图单元格之前执行此操作。
例如:
BasicUPnPDevice *device = [self.mDevices objectAtIndex:indexPath.row];
此处*device
接收该行的对象。我想创建另一个数组来存储已过滤的设备,所以我可以通过这个新数组来设置行数,而不是通过包含所有设备的数组来设置行数。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [newArray count];
}
答案 0 :(得分:1)
当您将设备添加到mDevices数组时,您可以在此处过滤数组或创建仅包含您希望在tableview中显示的设备的新数组。然后在用于行计数的tableview方法(numberOfRowsInSection)和用于呈现tableview数据(cellForRowAtIndexPath)的方法中,您将引用已过滤数组中的对象。如果处理是异步的,并且在表视图首次显示时数据不可用,则在数据可用时更新阵列,并调用方法重新加载表数据以显示最新数据。 [self.tableView reloadData];调用此方法将导致tableview再次执行numberOfRowsInSection和cellForRowAtIndexPath调用以访问已过滤的数组。 -rrh