Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数组中的数据列表。
我实现了代码以在表格视图中显示该数组中的数据。
正常显示现在我需要按字母顺序和部分显示数据如下。
我怎样才能做到这一点?
排序使用:-
NSSortDescriptor *sortParam= [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES]; [yourArray sortUsingDescriptors:[NSArray arrayWithObject:sortParam]];
viewdidload在将其分配给表之前对其进行排序。
viewdidload