【实例简介】
仿IOS手机通讯录效果:
1.获取手机联系人;
2.首字母排序显示;
3.搜索联系人连动;
4.显示联系人信息
5.拨打电话
【实例截图】
【核心代码】
ContactionView
└── ContactionView
├── ContactionView
│ ├── AppDelegate.h
│ ├── AppDelegate.m
│ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ └── Contents.json
│ │ ├── Contents.json
│ │ ├── headerimage.imageset
│ │ │ ├── Contents.json
│ │ │ └── default_avatar.png
│ │ └── transparent.imageset
│ │ ├── Contents.json
│ │ └── pic.jpg
│ ├── Base.lproj
│ │ ├── LaunchScreen.storyboard
│ │ └── Main.storyboard
│ ├── ChineseSorting
│ │ ├── ChineseString.h
│ │ ├── ChineseString.m
│ │ ├── pinyin.c
│ │ └── pinyin.h
│ ├── CustomAlertView.h
│ ├── CustomAlertView.m
│ ├── Info.plist
│ ├── main.m
│ ├── MobileAddressBook.h
│ ├── MobileAddressBook.m
│ ├── MyButton.h
│ ├── MyButton.m
│ ├── ViewController.h
│ ├── ViewController.m
│ └── View.xib
├── ContactionViewTests
│ ├── ContactionViewTests.m
│ └── Info.plist
├── ContactionViewUITests
│ ├── ContactionViewUITests.m
│ └── Info.plist
└── ContactionView.xcodeproj
├── project.pbxproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ └── linkhzz.xcuserdatad
│ └── UserInterfaceState.xcuserstate
└── xcuserdata
└── linkhzz.xcuserdatad
├── xcdebugger
│ └── Breakpoints_v2.xcbkptlist
└── xcschemes
├── ContactionView.xcscheme
└── xcschememanagement.plist
18 directories, 35 files