Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 433 Bytes

File metadata and controls

27 lines (20 loc) · 433 Bytes

react-native-contact

安装:

npm install -s https://github.com/fenglu09/react-native-contact.git react-native link react-native-contact

使用demo

import ContactPicker from 'react-native-contact';

...

// 选择联系人
ContactPicker.pickContact().then(result => {
  console.log(result);
}).catch(error => {
  console.log(error);
});

error

code 说明
10001 NO_PERMISSION
10002 USER_CANCELED