What is wrong with print object po, Objective - C Xcode's LLDB debugger?
问题 I am trying to debug these lines of codes: #pragma mark - TableView Delegates - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ NSLog(@"%i", self.sectionList.count) return self.sectionList.count; } But when i write po these to see the value, after little pause nothing happens.. Any idea and how should i approach to this situation ? (lldb) po self.sectionList.count (lldb) p self.sectionList.count 来源: https://stackoverflow.com/questions/64575909/what-is-wrong-with-print-object