у класса нет такого поля,
1. посмотрите в storyboard что у вас там прописан нужный class и
2. убедитесь что у этого класа есть такое проперти
3. добавьте вот такой лог и скорее всего вы увидите что там не тот класс
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
if ([sender isKindOfClass:[UITableViewCell class]])
{
UITableViewCell *cell = (UITableViewCell *)sender;
NSString *tmpStr = cell.textLabel.text;
VCViewController *destinationController = (VCViewController *) segue.destinationViewController;
NSLog(@"%@", destinationController.class);
[segue.destinationViewController setMyProperty:tmpStr];
}
}