如何从基于NSArray的数据模型(NSobject)访问对象?

时间:2018-01-24 08:30:47

标签: ios objective-c uitableview nsarray datamodel

我有一个Array,它在下面执行并组合了多个QBUUser用户。

2018-01-24 12:05:33.095197 + 0400 samplechat [70177:6634702] COMBINEDARRAY(

  "
  [QBUUser]:
  ID:25957858
  created at:2017-04-04 11:06:17 +0000
  updated at:2017-12-18 06:03:52 +0000
  externalUserID:0
  blobID:0
  facebookID:(null)
  twitterID:(null)
  twitterDigitsID:(null)
  full name:rothessa balinario  sevilla
  email:rothessa.sevilla@aujan.com
  login:6395
  phone:3
  tags:(null)
  lastRequestAt:2017-12-18 06:06:22 +0000
  customData:default.png
  website:http://hr team coordinator",
    "
  [QBUUser]:
  ID:26229973
  created at:2017-04-11 13:00:53 +0000
  updated at:2018-01-24 08:04:12 +0000
  externalUserID:0
  blobID:0
  facebookID:(null)
  twitterID:(null)
  twitterDigitsID:(null)
  full name:dalila  isabelle   safir
  email:dalila.safir@aujan.com
  login:9937
  phone:2
  tags:(null)
  lastRequestAt:2018-01-24 08:04:12 +0000
  customData:default.png
  website:http://human resources director",
    "
  [QBUUser]:
  ID:26429684
  created at:2017-04-16 06:42:44 +0000
  updated at:2018-01-22 11:01:24 +0000
  externalUserID:0
  blobID:0
  facebookID:(null)
  twitterID:(null)
  twitterDigitsID:(null)
  full name:fawaz al  omran
  email:fawaz.alomran@aujan.com
  login:9129
  phone:3
  tags:(null)
  lastRequestAt:2018-01-22 11:01:24 +0000
  customData:default.png
  website:http://brand manager - vimto cordial",
    "
  [QBUUser]:
  ID:26472195
  created at:2017-04-17 06:24:44 +0000
  updated at:2018-01-23 08:22:06 +0000
  externalUserID:0
  blobID:0
  facebookID:(null)
  twitterID:(null)
  twitterDigitsID:(null)
  full name:ahmet  kursat  kaymaz
  email:kursat.kaymaz@aujan.com
  login:9625
  phone:3
  tags:(null)
  lastRequestAt:2018-01-23 08:22:06 +0000
  customData:default.png
  website:http://category manager",

所以我想访问fullname并加载到我的tableview方法ex - user.fullname [indexpath.row] ..但是我不知道访问和加载allusers进入我的表视图的方法。

我尝试了以下方法而没有indexpath.row,所以它只将最后一个用户加载到tableview。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return multiCombinedArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    //  UserTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"contactUserCell" forIndexPath:indexPath];
    static NSString *cellIdentifier = @"UserTableViewCellIdentifier";
    ChatUserTableViewCell *chatUsersCell = (ChatUserTableViewCell *)[self.tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if(chatUsersCell == nil)
    {
        chatUsersCell = [[ChatUserTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }

  //  chatUsersCell.chatUserFullName.text = multiCombinedArray

    for(QBUUser *user in multiCombinedArray)
    {
        chatUsersCell.chatUserFullName.text = [NSString stringWithFormat:@"%@",user.fullName];

    }
  return chatUserCell;
}

请帮我快速访问全名并将所有名称加载到表格视图中。

2 个答案:

答案 0 :(得分:1)

您无需绕过multiCombinedArrayindexPath.row访问就足够了,所以

替换此

for(QBUUser *user in multiCombinedArray)
    {
        chatUsersCell.chatUserFullName.text = [NSString stringWithFormat:@"%@",user.fullName];

    }

通过此

   QBUUser * user = multiCombinedArray[indexPath.row];
   chatUsersCell.chatUserFullName.text = [NSString stringWithFormat:@"%@",user.fullName];

答案 1 :(得分:1)

from sklearn.metrics import f1_score
y_true = [0, 1, 2, 2, 2]
y_pred = [0, 0, 2, 2, 1]
target_names = ['class 0', 'class 1', 'class 2']

print(f1_score(y_true, y_pred, average=None)