1

我正在使用 Titanium 开发移动应用程序。我遇到了一个问题,我想在其中显示联系人列表。我使用以下代码显示联系人列表

Titanium.Contacts.showContacts({ });

我正在获取联系人列表,但它以 last name 的排序顺序显示。我希望列表以名字的排序顺序显示。

任何帮助将不胜感激

4

1 回答 1

2

有一个属性 Ti.Contacts.CONTACTS_SORT_FIRST_NAME 希望这会有所帮助。还有 CONTACTS_KIND_ORGANIZATION 和 CONTACTS_KIND_PERSON。

var g = Ti.Contacts.getAllGroups( );//Getting all the groups on the contacts table

var m = g[0].members();//select a group and check if it has members
Ti.API.info(m)// my group was empty so i have to add people

var p = Ti.Contacts.getAllPeople( )// get all the contacts
for (var i in p){//group and add people to your group
    g[0].add(p[i]);
    Ti.API.info(p[i].firstName);
    Titanium.Contacts.save()// you have to save new changes in IOS
}
g[0].sortedMembers(Ti.Contacts.CONTACTS_SORT_FIRST_NAME);// FINALLY WE CAN SORT

m = g[0].members();//   get the members 

for (var i in m){// verify they are in order
    Ti.API.info(m[i].firstName);
}
于 2012-04-19T15:07:09.620 回答