this code cannot be translated. It show error “Error converting ObjC to Oxygene. Object reference not set to an instance of an object”
[self.tableView registerNib:[UINibnibWithNibName:@"CustomCell"bundle:nil] forCellReuseIdentifier:@"Cell"];
[EDIT]
While translating, I realized that this code is wrong typed and should be:
[self.tableView registerNib:[UINib nibWithNibName:@"CustomCell"bundle:nil] forCellReuseIdentifier:@"Cell"];
Space between UINib and nibWithNibName. Translation works. What to do with post in case of false alarm like this one?
b.r.