cellForRowAtIndexPath instead of cellForItemAtIndexPath for iOS5 support

Change-Id: Ia37a77ffb516b0ee29c923c3a0d9bffea94b778b
diff --git a/ios/iosremote/iosremote/newServer_vc.m b/ios/iosremote/iosremote/newServer_vc.m
index 6c534a4..f6ae500 100644
--- a/ios/iosremote/iosremote/newServer_vc.m
+++ b/ios/iosremote/iosremote/newServer_vc.m
@@ -106,7 +106,7 @@
- (void)viewDidAppear:(BOOL)animated
{
    EditableTableViewCell *cell = (EditableTableViewCell *)[[self tableView]
                                                            cellForRowAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0]];
                                                            cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
    
    [[cell textField] becomeFirstResponder];
}