iOS13 之后出現右側箭頭圖標不對應,解決方法如下
if(@available(iOS13.0, *)){
UIImageView*accessoryView =[UIImageViewimageViewWithImage:[UIImageimageNamed:@"arrowRight"]] ;
cell.accessoryView= accessoryView;
}else{
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}