iOS 6.0 UIKit Artwork

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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
_UIPopoverViewBlackBackgroundArrowDown.png
_UIPopoverViewBlackBackgroundArrowDownRight.png
_UIPopoverViewBlackBackgroundArrowSide.png
_UIPopoverViewBlackBackgroundArrowSideBottom.png
_UIPopoverViewBlackBackgroundArrowSideTop.png
_UIPopoverViewBlackBackgroundArrowUp.png
_UIPopoverViewBlackBackgroundArrowUpRight.png
_UIPopoverViewBlueBackgroundArrowDown.png
_UIPopoverViewBlueBackgroundArrowDownRight.png
_UIPopoverViewBlueBackgroundArrowSide.png
_UIPopoverViewBlueBackgroundArrowSideBottom.png
_UIPopoverViewBlueBackgroundArrowSideTop.png
_UIPopoverViewBlueBackgroundArrowUp.png
_UIPopoverViewBlueBackgroundArrowUpRight.png
_UIPopoverViewBlueShine.png
_UIPopoverViewClearBackgroundArrowDown.png
_UIPopoverViewClearBackgroundArrowDownRight.png
_UIPopoverViewClearBackgroundArrowSide.png
_UIPopoverViewClearBackgroundArrowSideBottom.png
_UIPopoverViewClearBackgroundArrowSideTop.png
_UIPopoverViewClearBackgroundArrowUp.png
_UIPopoverViewClearBackgroundArrowUpRight.png
_UIPopoverViewCreamBackgroundArrowDown.png
_UIPopoverViewCreamBackgroundArrowDownRight.png
_UIPopoverViewCreamBackgroundArrowSide.png
_UIPopoverViewCreamBackgroundArrowSideBottom.png
_UIPopoverViewCreamBackgroundArrowSideTop.png
_UIPopoverViewCreamBackgroundArrowUp.png
_UIPopoverViewCreamBackgroundArrowUpRight.png
_UIPopoverViewShareBackgroundArrowDown.png
_UIPopoverViewShareBackgroundArrowDownRight.png
_UIPopoverViewShareBackgroundArrowSide.png
_UIPopoverViewShareBackgroundArrowSideBottom.png
_UIPopoverViewShareBackgroundArrowSideTop.png
_UIPopoverViewShareBackgroundArrowUp.png
_UIPopoverViewShareBackgroundArrowUpRight.png
_UIPopoverViewShareBlackBackgroundArrowDown.png
_UIPopoverViewShareBlackBackgroundArrowDownRight.png
_UIPopoverViewShareBlackBackgroundArrowSide.png
_UIPopoverViewShareBlackBackgroundArrowSideBottom.png
_UIPopoverViewShareBlackBackgroundArrowSideTop.png
_UIPopoverViewShareBlackBackgroundArrowUp.png
_UIPopoverViewShareBlackBackgroundArrowUpRight.png
_UIPopoverViewShortBlackBackgroundArrowSide.png
_UIPopoverViewShortBlueBackgroundArrowSide.png
_UIPopoverViewShortClearBackgroundArrowSide.png
_UIPopoverViewShortCreamBackgroundArrowSide.png
AssistNext.png
AssistPrevious.png
Black_Base.png
dictation-listening-00049.png
dictation-listening-00050.png
dictation-listening-00051.png
dictation-listening-00052.png
dictation-listening-00053.png
dictation-listening-00054.png
dictation-listening-00055.png
dictation-listening-00056.png
dictation-listening-00057.png
dictation-listening-00058.png
dictation-listening-00059.png
dictation-listening-00060.png
dictation-listening-00061.png
dictation-listening-00062.png
dictation-listening-00063.png
dictation-listening-00064.png
dictation-listening-00065.png
dictation-listening-00066.png
dictation-listening-00067.png
dictation-listening-00068.png
dictation-listening-00069.png
dictation-listening-00070.png
dictation-listening-00071.png
dictation-listening-00072.png
dictation-listening-00073.png
dictation-listening-00074.png
dictation-listening-00075.png
dictation-listening-00076.png
dictation-listening-00077.png
dictation-listening-00078.png
dictation-listening-00079.png
dictation-listening-00080.png
dictation-listening-00081.png
dictation-listening-00082.png
dictation-listening-00083.png
dictation-listening-00084.png
dictation-listening-00085.png
dictation-listening-00086.png
dictation-listening-00087.png
dictation-listening-00088.png
dictation-listening-00089.png
dictation-listening-00090.png
dictation-listening-00091.png
dictation-listening-00092.png
dictation-listening-00093.png
dictation-listening-00094.png
dictation-listening-00095.png
dictation-listening-00096.png
dictation-listening-00097.png
dictation-listening-00098.png
dictation-listening-00099.png
dictation-listening-00100.png
dictation-meter-background.png
Error_Base.png
InCall_Base.png
InCall_Glow.png
InVideoConference_Base.png
InVideoConference_Glow.png
Item_QuietModeAnimationMask.png
kb-arrow-blue.png
kb-arrow-brown.png
kb-arrow-white.png
kb-autocorrection-cancel-blue.png
kb-autocorrection-cancel-hi.png
kb-autocorrection-cancel-notes.png
kb-autocorrection-cancel.png
kb-autofill-cancel.png
kb-candidate-list-expand.png
kb-drag-dot.png
kb-extended-candidates-segmented-control-button-selected.png
kb-extended-candidates-segmented-control-button-tall-selected.png
kb-extended-candidates-segmented-control-button-tall.png
kb-extended-candidates-segmented-control-button.png
kb-extended-candidates-segmented-control-divider-selected.png
kb-extended-candidates-segmented-control-divider.png
kb-extended-candidates-segmented-control-landscape-button-selected.png
kb-extended-candidates-segmented-control-landscape-button.png
kb-extended-candidates-segmented-control-landscape-divider-selected.png
kb-extended-candidates-segmented-control-landscape-divider.png
kb-extended-candidates-segmented-control-tall-divider-selected.png
kb-extended-candidates-segmented-control-tall-divider.png
kb-loupe-hi.png
kb-loupe-lo.png
kb-loupe-mask.png
kb-magnifier-ranged-hi.png
kb-magnifier-ranged-lo.png
kb-magnifier-ranged-mask-flipped.png
kb-magnifier-ranged-mask.png
kb-magnifier-rangedvertical-hi.png
kb-magnifier-rangedvertical-lo.png
kb-magnifier-rangedvertical-mask.png
kb-popup-114-36-center.png
kb-popup-114-36-left.png
kb-popup-114-36-right.png
kb-popup-114-36-straight.png
kb-popup-114-42-center.png
kb-popup-114-42-left.png
kb-popup-114-42-right.png
kb-popup-114-42-straight.png
kb-shift-halo.png
kb-split-candidate-bar-candidates-mask.png
kb-split-candidate-bar-control-button-selected.png
kb-split-candidate-bar-control-button.png
kb-split-candidate-bar-page-control-divider-left-selected.png
kb-split-candidate-bar-page-control-divider-right-selected.png
kb-split-candidate-bar-page-control-divider.png
kb-split-formbar-left.png
kb-split-formbar-right.png
kb-std-active-bg-pop-center.png
Recording_Base.png
Recording_Glow.png
Tethering_Base.png
Tethering_Glow.png
TetheringSingle_Base.png
TintOverlay_Base.png
Translucent_Base.png
UIAccessDeniedViewLock.png
UIActionSheetButtonTableMask.png
UIActionSheetButtonTableShadow.png
UIActionSheetCheckmark.png
UIActionSheetCheckmarkHighlighted.png
UIActionSheetTableDecoration.png
UIActivityBlank.png
UIActivityBookmark.png
UIActivityCameraRoll.png
UIActivityCopy.png
UIActivityFacebook.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.0.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.10.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.11.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.12.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.13.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.14.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.15.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.1.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.2.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.3.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.4.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.5.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.6.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.7.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.8.png
UIActivityIndicatorViewStyleForBlueBackgroundSmall.9.png
UIActivityIndicatorViewStyleGray.0.png
UIActivityIndicatorViewStyleGray.10.png
UIActivityIndicatorViewStyleGray.11.png
UIActivityIndicatorViewStyleGray.1.png
UIActivityIndicatorViewStyleGray.2.png
UIActivityIndicatorViewStyleGray.3.png
UIActivityIndicatorViewStyleGray.4.png
UIActivityIndicatorViewStyleGray.5.png
UIActivityIndicatorViewStyleGray.6.png
UIActivityIndicatorViewStyleGray.7.png
UIActivityIndicatorViewStyleGray.8.png
UIActivityIndicatorViewStyleGray.9.png
UIActivityIndicatorViewStyleGraySmall.0.png
UIActivityIndicatorViewStyleGraySmall.10.png
UIActivityIndicatorViewStyleGraySmall.11.png
UIActivityIndicatorViewStyleGraySmall.12.png
UIActivityIndicatorViewStyleGraySmall.13.png
UIActivityIndicatorViewStyleGraySmall.14.png
UIActivityIndicatorViewStyleGraySmall.15.png
UIActivityIndicatorViewStyleGraySmall.1.png
UIActivityIndicatorViewStyleGraySmall.2.png
UIActivityIndicatorViewStyleGraySmall.3.png
UIActivityIndicatorViewStyleGraySmall.4.png
UIActivityIndicatorViewStyleGraySmall.5.png
UIActivityIndicatorViewStyleGraySmall.6.png
UIActivityIndicatorViewStyleGraySmall.7.png
UIActivityIndicatorViewStyleGraySmall.8.png
UIActivityIndicatorViewStyleGraySmall.9.png
UIActivityIndicatorViewStyleMaps.0.png
UIActivityIndicatorViewStyleMaps.10.png
UIActivityIndicatorViewStyleMaps.11.png
UIActivityIndicatorViewStyleMaps.1.png
UIActivityIndicatorViewStyleMaps.2.png
UIActivityIndicatorViewStyleMaps.3.png
UIActivityIndicatorViewStyleMaps.4.png
UIActivityIndicatorViewStyleMaps.5.png
UIActivityIndicatorViewStyleMaps.6.png
UIActivityIndicatorViewStyleMaps.7.png
UIActivityIndicatorViewStyleMaps.8.png
UIActivityIndicatorViewStyleMaps.9.png
UIActivityIndicatorViewStyleMapsBig.0.png
UIActivityIndicatorViewStyleMapsBig.10.png
UIActivityIndicatorViewStyleMapsBig.11.png
UIActivityIndicatorViewStyleMapsBig.1.png
UIActivityIndicatorViewStyleMapsBig.2.png
UIActivityIndicatorViewStyleMapsBig.3.png
UIActivityIndicatorViewStyleMapsBig.4.png
UIActivityIndicatorViewStyleMapsBig.5.png
UIActivityIndicatorViewStyleMapsBig.6.png
UIActivityIndicatorViewStyleMapsBig.7.png
UIActivityIndicatorViewStyleMapsBig.8.png
UIActivityIndicatorViewStyleMapsBig.9.png
UIActivityIndicatorViewStyleSyncGray.0.png
UIActivityIndicatorViewStyleSyncGray.10.png
UIActivityIndicatorViewStyleSyncGray.11.png
UIActivityIndicatorViewStyleSyncGray.12.png
UIActivityIndicatorViewStyleSyncGray.13.png
UIActivityIndicatorViewStyleSyncGray.14.png
UIActivityIndicatorViewStyleSyncGray.15.png
UIActivityIndicatorViewStyleSyncGray.16.png
UIActivityIndicatorViewStyleSyncGray.17.png
UIActivityIndicatorViewStyleSyncGray.18.png
UIActivityIndicatorViewStyleSyncGray.19.png
UIActivityIndicatorViewStyleSyncGray.1.png
UIActivityIndicatorViewStyleSyncGray.20.png
UIActivityIndicatorViewStyleSyncGray.21.png
UIActivityIndicatorViewStyleSyncGray.22.png
UIActivityIndicatorViewStyleSyncGray.23.png
UIActivityIndicatorViewStyleSyncGray.2.png
UIActivityIndicatorViewStyleSyncGray.3.png
UIActivityIndicatorViewStyleSyncGray.4.png
UIActivityIndicatorViewStyleSyncGray.5.png
UIActivityIndicatorViewStyleSyncGray.6.png
UIActivityIndicatorViewStyleSyncGray.7.png
UIActivityIndicatorViewStyleSyncGray.8.png
UIActivityIndicatorViewStyleSyncGray.9.png
UIActivityIndicatorViewStyleSyncWhite.0.png
UIActivityIndicatorViewStyleSyncWhite.10.png
UIActivityIndicatorViewStyleSyncWhite.11.png
UIActivityIndicatorViewStyleSyncWhite.12.png
UIActivityIndicatorViewStyleSyncWhite.13.png
UIActivityIndicatorViewStyleSyncWhite.14.png
UIActivityIndicatorViewStyleSyncWhite.15.png
UIActivityIndicatorViewStyleSyncWhite.16.png
UIActivityIndicatorViewStyleSyncWhite.17.png
UIActivityIndicatorViewStyleSyncWhite.18.png
UIActivityIndicatorViewStyleSyncWhite.19.png
UIActivityIndicatorViewStyleSyncWhite.1.png
UIActivityIndicatorViewStyleSyncWhite.20.png
UIActivityIndicatorViewStyleSyncWhite.21.png
UIActivityIndicatorViewStyleSyncWhite.22.png
UIActivityIndicatorViewStyleSyncWhite.23.png
UIActivityIndicatorViewStyleSyncWhite.2.png
UIActivityIndicatorViewStyleSyncWhite.3.png
UIActivityIndicatorViewStyleSyncWhite.4.png
UIActivityIndicatorViewStyleSyncWhite.5.png
UIActivityIndicatorViewStyleSyncWhite.6.png
UIActivityIndicatorViewStyleSyncWhite.7.png
UIActivityIndicatorViewStyleSyncWhite.8.png
UIActivityIndicatorViewStyleSyncWhite.9.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.0.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.10.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.11.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.12.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.13.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.14.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.15.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.16.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.17.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.18.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.19.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.1.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.20.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.21.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.22.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.23.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.2.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.3.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.4.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.5.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.6.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.7.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.8.png
UIActivityIndicatorViewStyleSyncWhiteShadowed.9.png
UIActivityIndicatorViewStyleWhite.0.png
UIActivityIndicatorViewStyleWhite.10.png
UIActivityIndicatorViewStyleWhite.11.png
UIActivityIndicatorViewStyleWhite.1.png
UIActivityIndicatorViewStyleWhite.2.png
UIActivityIndicatorViewStyleWhite.3.png
UIActivityIndicatorViewStyleWhite.4.png
UIActivityIndicatorViewStyleWhite.5.png
UIActivityIndicatorViewStyleWhite.6.png
UIActivityIndicatorViewStyleWhite.7.png
UIActivityIndicatorViewStyleWhite.8.png
UIActivityIndicatorViewStyleWhite.9.png
UIActivityIndicatorViewStyleWhiteLarge.0.png
UIActivityIndicatorViewStyleWhiteLarge.10.png
UIActivityIndicatorViewStyleWhiteLarge.11.png
UIActivityIndicatorViewStyleWhiteLarge.1.png
UIActivityIndicatorViewStyleWhiteLarge.2.png
UIActivityIndicatorViewStyleWhiteLarge.3.png
UIActivityIndicatorViewStyleWhiteLarge.4.png
UIActivityIndicatorViewStyleWhiteLarge.5.png
UIActivityIndicatorViewStyleWhiteLarge.6.png
UIActivityIndicatorViewStyleWhiteLarge.7.png
UIActivityIndicatorViewStyleWhiteLarge.8.png
UIActivityIndicatorViewStyleWhiteLarge.9.png
UIActivityIndicatorViewStyleWhiteSmall.0.png
UIActivityIndicatorViewStyleWhiteSmall.10.png
UIActivityIndicatorViewStyleWhiteSmall.11.png
UIActivityIndicatorViewStyleWhiteSmall.12.png
UIActivityIndicatorViewStyleWhiteSmall.13.png
UIActivityIndicatorViewStyleWhiteSmall.14.png
UIActivityIndicatorViewStyleWhiteSmall.15.png
UIActivityIndicatorViewStyleWhiteSmall.1.png
UIActivityIndicatorViewStyleWhiteSmall.2.png
UIActivityIndicatorViewStyleWhiteSmall.3.png
UIActivityIndicatorViewStyleWhiteSmall.4.png
UIActivityIndicatorViewStyleWhiteSmall.5.png
UIActivityIndicatorViewStyleWhiteSmall.6.png
UIActivityIndicatorViewStyleWhiteSmall.7.png
UIActivityIndicatorViewStyleWhiteSmall.8.png
UIActivityIndicatorViewStyleWhiteSmall.9.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.0.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.10.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.11.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.12.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.13.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.14.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.15.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.1.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.2.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.3.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.4.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.5.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.6.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.7.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.8.png
UIActivityIndicatorViewStyleWhiteSmallShadowed.9.png
UIActivityMail.png
UIActivityPrint.png
UIActivityQuickLook.png
UIActivityShine.png
UIActivityTwitter.png
UIActivityWeibo.png
UIAlertSheetBlackBackground.png
UIAlertSheetBlackButton.png
UIAlertSheetBlackButtonPressed.png
UIAlertSheetBlackCancelButton.png
UIAlertSheetDefaultBackground.png
UIAlertSheetDefaultButton.png
UIAlertSheetDefaultButtonPressed.png
UIAlertSheetDefaultCancelButton.png
UIAlertSheetDefaultDestroyButton.png
UIAlertSheetDefaultDestroyButtonPressed.png
UIAlertSheetPopoverBackground.png
UIAlertSheetPopoverBlackCancelButton.png
UIAlertSheetPopoverCancelButton.png
UIAlertSheetPopoverDefaultButton.png
UIAlertSheetPopoverDefaultButtonPressed.png
UIAlertSheetPopoverDestroyButton.png
UIAlertSheetPopoverDestroyButtonPressed.png
UIAlertSheetSeparatorLine.png
UIAlertSheetTextFieldBackground.png
UIAlertSheetTextFieldGroupedBackground.png
UIAlertViewDimmingSpotlight.png
UIAlertViewTableDecoration.png
UIAtomBackgroundSelected.png
UIAtomBackgroundSelectedPurple.png
UIAtomMiniBackgroundSelected.png
UIAtomMiniBackgroundSelectedPurple.png
UIBlackCloseButton.png
UIBlackCloseButtonPressed.png
UIButtonBarAction.png
UIButtonBarActionSmall.png
UIButtonBarArrowDown.png
UIButtonBarArrowDownSmall.png
UIButtonBarArrowLeft.png
UIButtonBarArrowLeftLandscape.png
UIButtonBarArrowRight.png
UIButtonBarArrowRightLandscape.png
UIButtonBarArrowUp.png
UIButtonBarArrowUpSmall.png
UIButtonBarBackgroundTallTinted.png
UIButtonBarBadge.png
UIButtonBarBadgeOff.png
UIButtonBarBadgeOn.png
UIButtonBarBlackOpaqueBackground.png
UIButtonBarBlackOpaqueBackgroundTall.png
UIButtonBarBlackOpaqueBackgroundTop.png
UIButtonBarBlackTranslucentBackground.png
UIButtonBarBlackTranslucentBackgroundTop.png
UIButtonBarBookmarks.png
UIButtonBarBookmarksLandscape.png
UIButtonBarCamera.png
UIButtonBarCameraSmall.png
UIButtonBarCompose.png
UIButtonBarComposeLandscape.png
UIButtonBarContactAdd.png
UIButtonBarContactAddPressed.png
UIButtonBarDefaultBackground.png
UIButtonBarDefaultBackgroundTop.png
UIButtonBarFastForward.png
UIButtonBarGarbageClose10.png
UIButtonBarGarbageClose11.png
UIButtonBarGarbageClose12.png
UIButtonBarGarbageClose13.png
UIButtonBarGarbageClose14.png
UIButtonBarGarbageClose15.png
UIButtonBarGarbageClose16.png
UIButtonBarGarbageClose1.png
UIButtonBarGarbageClose2.png
UIButtonBarGarbageClose3.png
UIButtonBarGarbageClose4.png
UIButtonBarGarbageClose5.png
UIButtonBarGarbageClose6.png
UIButtonBarGarbageClose7.png
UIButtonBarGarbageClose8.png
UIButtonBarGarbageClose9.png
UIButtonBarGarbageCloseSmall10.png
UIButtonBarGarbageCloseSmall11.png
UIButtonBarGarbageCloseSmall12.png
UIButtonBarGarbageCloseSmall13.png
UIButtonBarGarbageCloseSmall14.png
UIButtonBarGarbageCloseSmall15.png
UIButtonBarGarbageCloseSmall16.png
UIButtonBarGarbageCloseSmall1.png
UIButtonBarGarbageCloseSmall2.png
UIButtonBarGarbageCloseSmall3.png
UIButtonBarGarbageCloseSmall4.png
UIButtonBarGarbageCloseSmall5.png
UIButtonBarGarbageCloseSmall6.png
UIButtonBarGarbageCloseSmall7.png
UIButtonBarGarbageCloseSmall8.png
UIButtonBarGarbageCloseSmall9.png
UIButtonBarGarbageOpen10.png
UIButtonBarGarbageOpen11.png
UIButtonBarGarbageOpen12.png
UIButtonBarGarbageOpen13.png
UIButtonBarGarbageOpen14.png
UIButtonBarGarbageOpen15.png
UIButtonBarGarbageOpen1.png
UIButtonBarGarbageOpen2.png
UIButtonBarGarbageOpen3.png
UIButtonBarGarbageOpen4.png
UIButtonBarGarbageOpen5.png
UIButtonBarGarbageOpen6.png
UIButtonBarGarbageOpen7.png
UIButtonBarGarbageOpen8.png
UIButtonBarGarbageOpen9.png
UIButtonBarGarbageOpenSmall10.png
UIButtonBarGarbageOpenSmall11.png
UIButtonBarGarbageOpenSmall12.png
UIButtonBarGarbageOpenSmall13.png
UIButtonBarGarbageOpenSmall14.png
UIButtonBarGarbageOpenSmall15.png
UIButtonBarGarbageOpenSmall1.png
UIButtonBarGarbageOpenSmall2.png
UIButtonBarGarbageOpenSmall3.png
UIButtonBarGarbageOpenSmall4.png
UIButtonBarGarbageOpenSmall5.png
UIButtonBarGarbageOpenSmall6.png
UIButtonBarGarbageOpenSmall7.png
UIButtonBarGarbageOpenSmall8.png
UIButtonBarGarbageOpenSmall9.png
UIButtonBarInfo.png
UIButtonBarInfoDark.png
UIButtonBarLocate.png
UIButtonBarLocateSmall.png
UIButtonBarMiniBlackOpaqueBackground.png
UIButtonBarMiniBlackOpaqueBackgroundTop.png
UIButtonBarMiniBlackTranslucentBackground.png
UIButtonBarMiniBlackTranslucentBackgroundTop.png
UIButtonBarMiniDefaultBackground.png
UIButtonBarMiniDefaultBackgroundTop.png
UIButtonBarMore.png
UIButtonBarMoreSelected.png
UIButtonBarNew.png
UIButtonBarNewLandscape.png
UIButtonBarNewSmall.png
UIButtonBarNextSlide.png
UIButtonBarOrganize.png
UIButtonBarOrganizeLandscape.png
UIButtonBarPageCurlBlackOpaque.png
UIButtonBarPageCurlBlackOpaqueLandscape.png
UIButtonBarPageCurlBlackTranslucent.png
UIButtonBarPageCurlBlackTranslucentLandscape.png
UIButtonBarPageCurlDefault.png
UIButtonBarPageCurlDefaultLandscape.png
UIButtonBarPageCurlSelected.png
UIButtonBarPageCurlSelectedDown.png
UIButtonBarPageCurlSelectedDownLandscape.png
UIButtonBarPageCurlSelectedLandscape.png
UIButtonBarPause.png
UIButtonBarPlay.png
UIButtonBarPlus.png
UIButtonBarPressedIndicator.png
UIButtonBarPreviousSlide.png
UIButtonBarRefresh.png
UIButtonBarRefreshLandscape.png
UIButtonBarReply.png
UIButtonBarReplyLandscape.png
UIButtonBarRewind.png
UIButtonBarSearch.png
UIButtonBarSelectedIndicator.png
UIButtonBarShadow.png
UIButtonBarStop.png
UIButtonBarTrash.png
UICalloutBarArrowBottom.png
UICalloutBarArrowBottomHi.png
UICalloutBarArrowLeft.png
UICalloutBarArrowLeftHi.png
UICalloutBarArrowRight.png
UICalloutBarArrowRightHi.png
UICalloutBarArrowSingleLeft.png
UICalloutBarArrowSingleLeftHi.png
UICalloutBarArrowSingleRight.png
UICalloutBarArrowSingleRightHi.png
UICalloutBarArrowTop.png
UICalloutBarArrowTopHi.png
UICalloutBarBIU.png
UICalloutBarCut.png
UICalloutBarInsertImage.png
UICalloutBarLeft.png
UICalloutBarLeftHi.png
UICalloutBarMiddle.png
UICalloutBarMiddleHi.png
UICalloutBarNextArrow.png
UICalloutBarPreviousArrow.png
UICalloutBarRight.png
UICalloutBarRightHi.png
UICalloutBarShadowLeft.png
UICalloutBarShadowMiddle.png
UICalloutBarShadowRight.png
UICalloutBarSingle.png
UICalloutBarSingleHi.png
UICalloutBarSingleMatte.png
UICalloutBarTextLtoR.png
UICalloutBarTextRtoL.png
UICalloutViewBackground.png
UICalloutViewBottomAnchor.png
UICalloutViewLeftCap.png
UICalloutViewRightCap.png
UICalloutViewTopAnchor.png
UICellBadgeCenter.png
UICellBadgeLeft.png
UICellBadgeRight.png
UICellBadgeSelectedCenter.png
UICellBadgeSelectedLeft.png
UICellBadgeSelectedRight.png
UICompletionTableShadow.png
UIDocumentPasswordView-doc-icon.png
UILabelMarqueeMask.png
UILabelMarqueeRightFade.png
UILCDBackground.png
UIMovieScrubberEditingFill.png
UIMovieScrubberEditingGlassFill.png
UIMovieScrubberEditingGlassLeft.png
UIMovieScrubberEditingGlassRight.png
UIMovieScrubberEditingLeft.png
UIMovieScrubberEditingRight.png
UIMovieScrubberFillFill.png
UIMovieScrubberFillLeft.png
UIMovieScrubberFillRight.png
UIMovieScrubberInnerShadow.png
UIMovieScrubberMaskFill.png
UIMovieScrubberMaskLeft.png
UIMovieScrubberMaskRight.png
UIMovieScrubberShadow.png
UIMovieScrubberThumb.png
UINavigationBarAddButton.png
UINavigationBarBackArrow.png
UINavigationBarBlackOpaqueBack.png
UINavigationBarBlackOpaqueBackground.png
UINavigationBarBlackOpaqueBackPressed.png
UINavigationBarBlackOpaqueButton.png
UINavigationBarBlackOpaqueButtonPressed.png
UINavigationBarBlackOpaqueTallBackground.png
UINavigationBarBlackTranslucentBack.png
UINavigationBarBlackTranslucentBackground.png
UINavigationBarBlackTranslucentBackPressed.png
UINavigationBarBlackTranslucentButton.png
UINavigationBarBlackTranslucentButtonPressed.png
UINavigationBarBlackTranslucentTallBackground.png
UINavigationBarDefaultBack.png
UINavigationBarDefaultBackground.png
UINavigationBarDefaultBackPressed.png
UINavigationBarDefaultButton.png
UINavigationBarDefaultButtonPressed.png
UINavigationBarDefaultTallBackground.png
UINavigationBarDoneButton.png
UINavigationBarDoneButtonDark.png
UINavigationBarDoneButtonPressed.png
UINavigationBarDoneButtonPressedDark.png
UINavigationBarMiniBlackOpaqueBack.png
UINavigationBarMiniBlackOpaqueBackground.png
UINavigationBarMiniBlackOpaqueBackPressed.png
UINavigationBarMiniBlackOpaqueButton.png
UINavigationBarMiniBlackOpaqueButtonPressed.png
UINavigationBarMiniBlackOpaqueTallBackground.png
UINavigationBarMiniBlackTranslucentBack.png
UINavigationBarMiniBlackTranslucentBackground.png
UINavigationBarMiniBlackTranslucentBackPressed.png
UINavigationBarMiniBlackTranslucentButton.png
UINavigationBarMiniBlackTranslucentButtonPressed.png
UINavigationBarMiniBlackTranslucentTallBackground.png
UINavigationBarMiniDefaultBack.png
UINavigationBarMiniDefaultBackground.png
UINavigationBarMiniDefaultBackPressed.png
UINavigationBarMiniDefaultButton.png
UINavigationBarMiniDefaultButtonPressed.png
UINavigationBarMiniDefaultTallBackground.png
UINavigationBarMiniDoneButton.png
UINavigationBarMiniDoneButtonDark.png
UINavigationBarMiniDoneButtonPressed.png
UINavigationBarMiniDoneButtonPressedDark.png
UINavigationBarMiniRemoveButton.png
UINavigationBarMiniRemoveButtonDark.png
UINavigationBarMiniRemoveButtonPressed.png
UINavigationBarMiniRemoveButtonPressedDark.png
UINavigationBarPopoverBack.png
UINavigationBarPopoverBackPressed.png
UINavigationBarPopoverButton.png
UINavigationBarPopoverButtonPressed.png
UINavigationBarRemoveButton.png
UINavigationBarRemoveButtonDark.png
UINavigationBarRemoveButtonPressed.png
UINavigationBarRemoveButtonPressedDark.png
UINavigationBarShadow.png
UIPageIndicator.png
UIPageIndicatorCurrent.png
UIPasscodeFieldBackground.png
UIPasscodeFieldBackground_Opaque.png
UIPasscodeFieldButton.png
UIPasscodeFieldButtonPressed.png
UIPickerTableCellChecked.png
UIPickerViewBackground-162.png
UIPickerViewBackground-180.png
UIPickerViewBackground.png
UIPickerViewFrameLeft-162-Bar.png
UIPickerViewFrameLeft-162.png
UIPickerViewFrameLeft-180-Bar.png
UIPickerViewFrameLeft-180.png
UIPickerViewFrameLeft-Bar.png
UIPickerViewFrameLeft-Popover.png
UIPickerViewFrameLeft.png
UIPickerViewFrameMiddle-162.png
UIPickerViewFrameMiddle-180.png
UIPickerViewFrameMiddle.png
UIPickerViewFrameRight-162-Bar.png
UIPickerViewFrameRight-162.png
UIPickerViewFrameRight-180-Bar.png
UIPickerViewFrameRight-180.png
UIPickerViewFrameRight-Bar.png
UIPickerViewFrameRight.png
UIPickerViewSelectionBar.png
UIPickerViewSelectionBarAboveDivider.png
UIPickerViewSelectionBarAboveWheel.png
UIPickerViewShadowsAboveWheel-162.png
UIPickerViewShadowsAboveWheel-180.png
UIPickerViewShadowsAboveWheel.png
UIPickerViewWheelBackground-162.png
UIPickerViewWheelBackground-180.png
UIPickerViewWheelBackground.png
UIPinstripe.png
UIPlacardButtonBkgnd-short.png
UIPlacardButtonBkgnd.png
UIPlacardButtonPressedBkgnd-short.png
UIPlacardButtonPressedBkgnd.png
UIPopoverButton.png
UIPopoverButtonPressed.png
UIPopupAlertListShadow.png
UIPopupAlertListShadowMask.png
UIPopupAlertSheetBackground (UNDO).png
UIPopupAlertSheetBackground.png
UIPopupAlertSheetButton.png
UIPopupAlertSheetButtonPress.png
UIPopupAlertSheetDefaultButton.png
UIPreferencesBlueCheck.png
UIPreferencesDeleteButtonDark.png
UIPreferencesDeleteButtonDarkPressed.png
UIPreferencesDeleteButtonNormal.png
UIPreferencesDeleteButtonPressed.png
UIPreferencesGreenCheck.png
UIPreferencesRedCheck.png
UIPreferencesWhiteCheck.png
UIPrinterLock.png
UIPrinterLockSelected.png
UIPrinterNoJobIcon.png
UIPrinterUnlock.png
UIPrinterUnlockSelected.png
UIPrintStatusGenericThumbnail.png
UIProgressBarCustomMaskInner_Bar.png
UIProgressBarCustomMaskInner_Default.png
UIProgressBarCustomMaskOuter_Bar.png
UIProgressBarCustomMaskOuter_Default.png
UIProgressBarCustomShineInner_Bar.png
UIProgressBarCustomShineInner_Default.png
UIProgressBarCustomShineOuter_Bar.png
UIProgressBarCustomShineOuter_Default.png
UIProgressBarInner_Bar.png
UIProgressBarInner_Default.png
UIProgressBarOuter_Bar.png
UIProgressBarOuter_Default.png
UIProgressHUDCheck.png
UIReferenceLibraryViewControllerButtonNormal.png
UIReferenceLibraryViewControllerButtonPressed.png
UIReferenceLibraryViewControllerDiddlydo.png
UIReferenceLibraryViewControllerShadowMask.png
UIRefreshControlArrow.png
UIRefreshControlBlobEffect.png
UIRefreshControlBlobMask.png
UIRemoveControlMinus.png
UIRemoveControlMultiCheckedImage.png
UIRemoveControlMultiNotCheckedImage.png
UIRemoveControlMultiSelectedImage.png
UIRemoveControlPlus.png
UIRemoveControlPressedRed.png
UIRemoveControlRed.png
UIRoundedCustomMaskTextFieldLeft.png
UIRoundedCustomMaskTextFieldMiddle.png
UIRoundedCustomMaskTextFieldRight.png
UIRoundedCustomShineTextFieldLeft.png
UIRoundedCustomShineTextFieldMiddle.png
UIRoundedCustomShineTextFieldRight.png
UIRoundedTextFieldLeft.png
UIRoundedTextFieldLeftInactive.png
UIRoundedTextFieldLeftProgress.png
UIRoundedTextFieldMiddle.png
UIRoundedTextFieldMiddleInactive.png
UIRoundedTextFieldMiddleProgress.png
UIRoundedTextFieldRight.png
UIRoundedTextFieldRightInactive.png
UIRoundedTextFieldRightProgress.png
UIScrollerContentShadowCorner.png
UIScrollerContentShadowFill.png
UIScrollerIndicatorBlack.png
UIScrollerIndicatorDefault.png
UIScrollerIndicatorWhite.png
UIScrollerShadowCorner.png
UIScrollerShadowFill.png
UIScrubberBlueCap.png
UIScrubberBlueCapRight.png
UIScrubberBlueFill.png
UIScrubberDownloadFill.png
UIScrubberDownloadingCapLeft.png
UIScrubberDownloadingCapRight.png
UIScrubberKnob.png
UIScrubberLargeKnob.png
UIScrubberWhiteCap.png
UIScrubberWhiteCapLeft.png
UIScrubberWhiteFill.png
UISearchBarBlackBackground.png
UISearchBarBlackBorder.png
UISearchBarBlackBorderInactive.png
UISearchBarBlackButton.png
UISearchBarBlackButtonPressed.png
UISearchBarBlackSeparator.png
UISearchBarBlackTranslucentBackground.png
UISearchBarBlackTranslucentButton.png
UISearchBarBlackTranslucentButtonPressed.png
UISearchBarBlackTranslucentSeparator.png
UISearchBarBlueBackground.png
UISearchBarBookmarks.png
UISearchBarBookmarksPressed.png
UISearchBarBorder.png
UISearchBarBorderInactive.png
UISearchBarBorderInactiveInline.png
UISearchBarBorderInline.png
UISearchBarCancelButton.png
UISearchBarCancelButtonPressed.png
UISearchBarDefaultBackground.png
UISearchBarDefaultSeparator.png
UISearchFieldIcon.png
UISearchFieldLeft.png
UISearchFieldLeftInactive.png
UISearchFieldLeftProgress.png
UISearchFieldMiddle.png
UISearchFieldMiddleInactive.png
UISearchFieldMiddleProgress.png
UISearchFieldRight.png
UISearchFieldRightInactive.png
UISearchFieldRightProgress.png
UISectionListHeaderBackground.png
UISectionListHeaderBackgroundOpaque.png
UISectionListPoundSign.png
UISegmentBarBlackButton.png
UISegmentBarBlackButtonHighlighted.png
UISegmentBarBlackDivider.png
UISegmentBarBlackDividerHighlighted.png
UISegmentBarBlackMiniButton.png
UISegmentBarBlackMiniButtonHighlighted.png
UISegmentBarBlackMiniDivider.png
UISegmentBarBlackMiniDividerHighlighted.png
UISegmentBarButton.png
UISegmentBarButtonHighlighted.png
UISegmentBarDivider.png
UISegmentBarDividerHighlighted.png
UISegmentBarMiniButton.png
UISegmentBarMiniButtonHighlighted.png
UISegmentBarMiniDivider.png
UISegmentBarMiniDividerHighlighted.png
UISegmentBarPopoverButton.png
UISegmentBarPopoverButtonHighlighted.png
UISegmentBarPopoverDivider.png
UISegmentBarPopoverDividerHighlighted.png
UISegmentBorderedButton.png
UISegmentBorderedButtonHighlighted.png
UISegmentBorderedDivider.png
UISegmentBorderedDividerHilightedLeft.png
UISegmentBorderedDividerHilightedRight.png
UISegmentButton.png
UISegmentButtonHighlighted.png
UISegmentDivider.png
UISegmentDividerHilightedLeft.png
UISegmentDividerHilightedRight.png
UISegmentOptionsBackground.png
UISegmentOptionsButton.png
UISegmentOptionsButtonBlackTranslucent.png
UISegmentOptionsButtonBlue.png
UISegmentOptionsButtonSelected.png
UISegmentOptionsButtonSelectedBlackTranslucent.png
UISegmentOptionsButtonSelectedBlue.png
UISegmentOptionsDivider.png
UISegmentOptionsDividerBlackTranslucent.png
UISegmentOptionsDividerBlue.png
UISegmentOptionsDividerSelected.png
UISegmentOptionsDividerSelectedBlackTranslucent.png
UISegmentOptionsDividerSelectedBlue.png
UISegmentTexturedButtonHighlightedCenter.png
UISegmentTexturedButtonHighlightedLeftCap.png
UISegmentTexturedButtonHighlightedRightCap.png
UISegmentTexturedButtonSelectedCenter.png
UISegmentTexturedButtonSelectedHighlightedCenter.png
UISegmentTexturedButtonSelectedHighlightedLeftCap.png
UISegmentTexturedButtonSelectedHighlightedRightCap.png
UISegmentTexturedButtonSelectedLeftCap.png
UISegmentTexturedButtonSelectedRightCap.png
UISegmentTexturedDivider.png
UISegmentTexturedHighlightedDivider.png
UISegmentTexturedSelectedDivider.png
UISegmentTexturedSelectedHighlightedDivider.png
UISheetViewButtonTableMask.png
UISheetViewButtonTableShadow.png
UISliderBlue.png
UISliderBlueCap.png
UISliderBlueFill.png
UISliderCustomEmptyMask.png
UISliderCustomEmptyShine.png
UISliderCustomFillMask.png
UISliderCustomFillShine.png
UISliderCustomHandleDownMask.png
UISliderCustomHandleDownShine.png
UISliderCustomHandleMask.png
UISliderCustomHandleShine.png
UISliderHandle.png
UISliderHandleDown.png
UISliderWhite.png
UISliderWhiteCap.png
UISliderWhiteFill.png
UIStepper.png
UIStepperMiddle.png
UIStepperMiddleLeftPressed.png
UIStepperMiddleRightPressed.png
UIStepperMinus.png
UIStepperPlus.png
UIStepperPressed.png
UIStockImageNoContentLightGradientBackgroundColor.png
UIStockImagePaperTexture.png
UIStockImageScrollViewTexturedBackgroundColor.png
UIStockImageUnderPageBackground.png
UIStockImageWidgetBacksideBackground.png
UISwitchButtonDarkOff.png
UISwitchButtonDarkOn.png
UISwitchButtonFullShadowed.png
UISwitchButtonFullShadowedDown.png
UISwitchButtonLeftShadowed.png
UISwitchButtonLeftShadowedDown.png
UISwitchButtonOff.png
UISwitchButtonOn.png
UISwitchButtonRightShadowed.png
UISwitchButtonRightShadowedDown.png
UISwitchButtonWhiteOff.png
UISwitchButtonWhiteOn.png
UISwitchLeftCapOrange.png
UISwitchOnColorMask.png
UISwitchShapeMask.png
UISwitchShapeShadow.png
UISwitchThumb.png
UISwitchThumbCustomMask.png
UISwitchThumbCustomPressedMask.png
UISwitchThumbCustomPressedShine.png
UISwitchThumbCustomShine.png
UISwitchThumbPressed.png
UISwitchTrackBlue.png
UISwitchTrackClear.png
UISwitchTrackCustomEffects.png
UISwitchTrackCustomMask.png
UISwitchTrackOrange.png
UITabBarBlueGradient.png
UITabBarBookmarksTemplate.png
UITabBarContactsTemplate.png
UITabBarDownloadsTemplate.png
UITabBarFavoritesTemplate.png
UITabBarFeatured.png
UITabBarFeaturedSelected.png
UITabBarFeaturedTemplate.png
UITabBarHistoryTemplate.png
UITabBarMore.png
UITabBarMoreSelected.png
UITabBarMoreTemplate.png
UITabBarMostRecentTemplate.png
UITabBarMostViewedTemplate.png
UITabBarSearchTemplate.png
UITabBarTintedGradientShine.png
UITableCellShadowBottom.png
UITableCellShadowTop.png
UITableGrabber.png
UITableInnerShadowBottom.png
UITableInnerShadowTop.png
UITableNext.png
UITableNext.png
UITableNextButton.png
UITableNextButtonPressed.png
UITableNextSelected.png
UITableNextSelected.png
UITableNextSprite.png
UITableSelection.png
UITableSelectionGray.png
UITableSelectionGrayBlue.png
UITableSelectionGreen.png
UITableSelectionRed.png
UITableViewIndexDot.png
UITableViewIndexSearchGlyph.png
UITableViewTexture.png
UITextFieldClearButton.png
UITextFieldClearButtonPressed.png
UITextFieldMiniClearButton.png
UITextFieldMiniClearButtonPressed.png
UITextFieldSearchResultsListButton.png
UITextFieldSearchResultsListButtonPressed.png
UITexturedButton.png
UITexturedButtonTextGradient.png
UITexturedButtonTextGradientSmall.png
UITexturedPressedButton.png
UITimerPickerBackground.png
UITimerPickerFrameLeft-Bar.png
UITimerPickerFrameMiddle.png
UITimerPickerFrameRight-Bar.png
UITimerPickerSelectionBar.png
UITimerPickerSelectionBarAboveDivider.png
UITimerPickerSelectionBarAboveWheel.png
UITimerPickerViewShadowsAboveWheel.png
UITimerPickerWheelBackground.png
UITintedBackButtonHighlight.png
UITintedBackButtonMask.png
UITintedBackButtonShadowFlat.png
UITintedBarMiniTallBackground.png
UITintedBarTallBackground.png
UITintedBottomBarHighlight.png
UITintedButtonHighlight.png
UITintedButtonMask.png
UITintedButtonShadow.png
UITintedButtonShadowFlat.png
UITintedCircularButtonArrow.png
UITintedCircularButtonCheckmark.png
UITintedCircularButtonMask.png
UITintedCircularButtonPlus.png
UITintedCircularButtonShadow.png
UITintedMiniBackButtonHighlight.png
UITintedMiniBackButtonMask.png
UITintedMiniBackButtonShadow.png
UITintedMiniBottomBarHighlight.png
UITintedMiniButtonHighlight.png
UITintedMiniButtonMask.png
UITintedMiniButtonShadow.png
UITintedMiniTopBarHighlight.png
UITintedSearchBarBackground.png
UITintedSearchBarButtonShadow.png
UITintedSearchBarSegmentDividerFlat.png
UITintedSearchBarSegmentDividerSelectedFlat.png
UITintedSectionListHeaderBackground.png
UITintedSegmentedBarDivider.png
UITintedSegmentedBarDividerFlat.png
UITintedSegmentedBarDividerSelected.png
UITintedSegmentedBarDividerSelectedFlat.png
UITintedSegmentedBarHighlight.png
UITintedSegmentedBarHighlightSelected.png
UITintedSegmentedBarMask.png
UITintedSegmentedBarMaskSelected.png
UITintedSegmentedBarShadow.png
UITintedSegmentedBarShadowFlat.png
UITintedSegmentedBarShadowSelected.png
UITintedSegmentedBarShadowSelectedFlat.png
UITintedSegmentedBezelDivider.png
UITintedSegmentedBezelHighlight.png
UITintedSegmentedBezelHighlightSelected.png
UITintedSegmentedBezelMask.png
UITintedSegmentedMiniBarDivider.png
UITintedSegmentedMiniBarDividerSelected.png
UITintedSegmentedMiniBarHighlight.png
UITintedSegmentedMiniBarHighlightSelected.png
UITintedSegmentedMiniBarMask.png
UITintedSegmentedMiniBarMaskSelected.png
UITintedSegmentedMiniBarShadow.png
UITintedSegmentedMiniBarShadowSelected.png
UITintedStepper.png
UITintedStepperMask.png
UITintedStepperMiddle.png
UITintedStepperMiddleLeftPressed.png
UITintedStepperMiddleRightPressed.png
UITintedStepperMinus.png
UITintedStepperPlus.png
UITintedStepperPressed.png
UITintedStepperWhiteMinus.png
UITintedStepperWhitePlus.png
UITintedTopBarHighlight.png
UIUnreadIndicator.png
UIUnreadIndicatorPartial.png
UIUnreadIndicatorPartialPressed.png
UIUnreadIndicatorPressed.png
WhiteOnBlackEtch_0_Bars.png
WhiteOnBlackEtch_0_WifiBars.png
WhiteOnBlackEtch_1_Bars.png
WhiteOnBlackEtch_1_WifiBars.png
WhiteOnBlackEtch_2_Bars.png
WhiteOnBlackEtch_2_WifiBars.png
WhiteOnBlackEtch_3_Bars.png
WhiteOnBlackEtch_3_WifiBars.png
WhiteOnBlackEtch_4_Bars.png
WhiteOnBlackEtch_5_Bars.png
WhiteOnBlackEtch_Airplane.png
WhiteOnBlackEtch_AirPlay.png
WhiteOnBlackEtch_Alarm.png
WhiteOnBlackEtch_BatteryCharged.png
WhiteOnBlackEtch_BatteryCharging.png
WhiteOnBlackEtch_BatteryDrainingBG.png
WhiteOnBlackEtch_BatteryDrainingInsides.png
WhiteOnBlackEtch_BatteryDrainingInsidesLow.png
WhiteOnBlackEtch_Bluetooth.png
WhiteOnBlackEtch_BluetoothConnected.png
WhiteOnBlackEtch_CallForward.png
WhiteOnBlackEtch_DataTypeEDGE.png
WhiteOnBlackEtch_DataTypeGPRS.png
WhiteOnBlackEtch_DataTypeiOSHotspot.png
WhiteOnBlackEtch_DataTypeUMTS.png
WhiteOnBlackEtch_Geofence.png
WhiteOnBlackEtch_HeadsetBatteryBG.png
WhiteOnBlackEtch_Location.png
WhiteOnBlackEtch_Play.png
WhiteOnBlackEtch_Plus.png
WhiteOnBlackEtch_QuietMode.png
WhiteOnBlackEtch_RotationLock.png
WhiteOnBlackEtch_Siri.png
WhiteOnBlackEtch_TTY.png
WhiteOnBlackEtch_VPN.png
WhiteOnBlackShadow_0_Bars.png
WhiteOnBlackShadow_0_WifiBars.png
WhiteOnBlackShadow_1_Bars.png
WhiteOnBlackShadow_1_WifiBars.png
WhiteOnBlackShadow_2_Bars.png
WhiteOnBlackShadow_2_WifiBars.png
WhiteOnBlackShadow_3_Bars.png
WhiteOnBlackShadow_3_WifiBars.png
WhiteOnBlackShadow_4_Bars.png
WhiteOnBlackShadow_5_Bars.png
WhiteOnBlackShadow_Airplane.png
WhiteOnBlackShadow_AirPlay.png
WhiteOnBlackShadow_Alarm.png
WhiteOnBlackShadow_BatteryCharged.png
WhiteOnBlackShadow_BatteryCharging.png
WhiteOnBlackShadow_BatteryDrainingBG.png
WhiteOnBlackShadow_BatteryDrainingInsides.png
WhiteOnBlackShadow_BatteryDrainingInsidesLow.png
WhiteOnBlackShadow_Bluetooth.png
WhiteOnBlackShadow_BluetoothConnected.png
WhiteOnBlackShadow_CallForward.png
WhiteOnBlackShadow_DataTypeEDGE.png
WhiteOnBlackShadow_DataTypeGPRS.png
WhiteOnBlackShadow_DataTypeiOSHotspot.png
WhiteOnBlackShadow_DataTypeUMTS.png
WhiteOnBlackShadow_Geofence.png
WhiteOnBlackShadow_HeadsetBatteryBG.png
WhiteOnBlackShadow_Location.png
WhiteOnBlackShadow_Play.png
WhiteOnBlackShadow_Plus.png
WhiteOnBlackShadow_QuietMode.png
WhiteOnBlackShadow_RotationLock.png
WhiteOnBlackShadow_Siri.png
WhiteOnBlackShadow_TTY.png
WhiteOnBlackShadow_VPN.png