forked from thermogl/TITokenField
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Names.m
80 lines (74 loc) · 1.57 KB
/
Names.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// Names.m
// TokenFieldExample
//
// Created by Tom on 06/03/2010.
// Copyright 2010 Tom Irving. All rights reserved.
//
#import "Names.h"
@implementation Names
+ (NSArray *)listOfNames {
// Generated with http://www.kleimo.com/random/name.cfm
return [NSArray arrayWithObjects:
@"Samuel Prescott",
@"Grace Mcburney",
@"Rosemary Sells",
@"Janet Canady",
@"Gregory Leech",
@"Geneva Mcguinness",
@"Billy Shin",
@"Douglass Fostlick",
@"Roberta Pedersen",
@"Earl Rashid",
@"Matthew Hooks",
@"Regina Toombs",
@"Victor Sisneros",
@"Beverly Covington",
@"Steve Crews",
@"Carlos Trejo",
@"Victoria Delgadillo",
@"Leah Greenberg",
@"Deborah Depew",
@"Jeffery Khoury",
@"Kathryn Worsham",
@"Olivia Brownell",
@"Gary Pritchard",
@"Susan Cervantes",
@"Olvera Nipplehead",
@"Debra Graves",
@"Albert Deltoro",
@"Carole Flatt",
@"Philip Vo",
@"Phillip Wagstaff",
@"Xiao Jacquay",
@"Cleotilde Vondrak",
@"Carter Redepenning",
@"Kaycee Wintersmith",
@"Collin Tick",
@"Peg Yore",
@"Cruz Buziak",
@"Ardath Osle",
@"Frederic Manusyants",
@"Collin Politowski",
@"Hunter Wollyung",
@"Cruz Gurke",
@"Sulema Sholette",
@"Denver Goetter",
@"Chantay Phothirath",
@"Arlean Must",
@"Carlo Henggeler",
@"Daughrity Maichle",
@"Zada Wintermantel",
@"Denver Kubu",
@"Carlo Guzma",
@"Emory Swires",
@"Kirby Manas",
@"Tobie Spirito",
@"Lane Defaber",
@"Sparkle Mousa",
@"Chantay Palczynski",
@"Denver Perfater",
@"Tom Irving",
nil];
}
@end