- (IBAction)doUpload:(id)sender
{
NSMutableArray *selected_items = [[NSMutableArray alloc] init];
for (int i = 0; i<[appDelegate.notesArray count]; i++) {
if (selected[i]) [selected_items addObject:[appDelegate.notesArray objectAtIndex:i]];
UploadView *uploadview = (UploadView *)self.view;
if (uploadview != nil)
{
[m_owner uploadString:here i want to pass the value];
//[self dismissModalViewControllerAnimated:YES];
}
}
}
iphone用のSDKにNSStringのにMutbleArrayを変換する[m_ownerのuploadString:ここで私は値を渡したい];しかし、私は、文字列をPASしかBLEていますGDoc mutbleArrayをUplod文字列に変換または分割する方法は? コンマで区切って、私のDidSelecetRowAtIndexPatheコードは、この私はにのUITableViewから複数の値を渡したい私の移動コードに
NSUInteger row = [indexPath row];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
cell.accessoryType = UITableViewCellAccessoryNone;
selected[row] = NO;
}
else {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
selected[row] = YES;
}
[tableView deselectRowAtIndexPath:indexPath animated:YES];
私はこれを理解できません。もっと適切な英語を使ってみてください。また、これであなたの目標は何ですか? NSMutableArrayの要素をNSStringに連結したいのですか? –