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
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
2381E9EBA834CB171E43657A /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 083F3F95EB690FA24FEC0C8E /* libPods.a */; };
8409BDF81C281ACD00354460 /* CheckBoxButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409BDE81C281ACD00354460 /* CheckBoxButton.m */; };
8409BDF91C281ACD00354460 /* SelectYetTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409BDEA1C281ACD00354460 /* SelectYetTableViewCell.m */; };
8409BDFA1C281ACD00354460 /* TreeNodeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409BDEC1C281ACD00354460 /* TreeNodeCell.m */; };
8409BDFB1C281ACD00354460 /* TreeNodeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409BDEF1C281ACD00354460 /* TreeNodeModel.m */; };
8409BDFC1C281ACD00354460 /* SelectStoreHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409BDF21C281ACD00354460 /* SelectStoreHeadView.m */; };
8409BDFD1C281ACD00354460 /* TreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409BDF41C281ACD00354460 /* TreeView.m */; };
8409BDFE1C281ACD00354460 /* SelectStoreViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409BDF71C281ACD00354460 /* SelectStoreViewController.m */; };
8419EAD41BEDC98F002635ED /* HttpClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8419EAD31BEDC98F002635ED /* HttpClient.m */; };
841D24F81BEB473C0005CC9F /* CheckPicViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 841D24F71BEB473C0005CC9F /* CheckPicViewController.m */; };
841D24FB1BEB75CA0005CC9F /* QuestionDetailFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 841D24FA1BEB75CA0005CC9F /* QuestionDetailFooterView.m */; };
842547FC1BF03977006C79C5 /* QuestionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 842547FB1BF03977006C79C5 /* QuestionModel.m */; };
843D1B9E1C0B3F7600E30002 /* SpotCheckOnLineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 843D1B9D1C0B3F7600E30002 /* SpotCheckOnLineViewController.m */; };
8442BA5C1BDB8FDB005E5657 /* MineTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8442BA5B1BDB8FDB005E5657 /* MineTableHeaderView.m */; };
846206B51C06AF700015C456 /* RankListHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 846206B41C06AF700015C456 /* RankListHeaderView.m */; };
846206B81C06AFCA0015C456 /* RankCommentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 846206B71C06AFCA0015C456 /* RankCommentModel.m */; };
846206BB1C06AFF50015C456 /* RankCommentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 846206BA1C06AFF50015C456 /* RankCommentCell.m */; };
8462C6EC1BF5F3BE00344DDD /* MenuButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 8462C6EB1BF5F3BE00344DDD /* MenuButton.m */; };
846ABDF51C1E5E780020C331 /* PictureListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 846ABDF41C1E5E780020C331 /* PictureListModel.m */; };
846ABDF91C1E74430020C331 /* PictureDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 846ABDF81C1E74430020C331 /* PictureDetailModel.m */; };
846ABDFC1C1EAB160020C331 /* PicTextModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 846ABDFB1C1EAB160020C331 /* PicTextModel.m */; };
84720BC11C0377D300314099 /* CommentWithStarView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84720BC01C0377D300314099 /* CommentWithStarView.m */; };
8473E3881C1BBFF600960257 /* InspectTaskDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8473E3871C1BBFF600960257 /* InspectTaskDetailCell.m */; };
8473E38B1C1BCFC400960257 /* InspectTitleTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8473E38A1C1BCFC400960257 /* InspectTitleTableViewCell.m */; };
8474A01C1BE368D700315F30 /* HomeCellItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474A01B1BE368D700315F30 /* HomeCellItem.m */; };
8474C5831BE751A2007DCF19 /* CommonFunc.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5821BE751A2007DCF19 /* CommonFunc.m */; };
8474C5911BE78A85007DCF19 /* QuestionListTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C58C1BE78A85007DCF19 /* QuestionListTableCell.m */; };
8474C5921BE78A85007DCF19 /* QuestionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5901BE78A85007DCF19 /* QuestionViewController.m */; };
8474C5951BE78AE1007DCF19 /* QuestionDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5941BE78AE1007DCF19 /* QuestionDetailViewController.m */; };
8474C5991BE78BBC007DCF19 /* QuestionDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5981BE78BBC007DCF19 /* QuestionDetailCell.m */; };
8480BEA21C14326100E2F18F /* MoreScreenView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8480BEA11C14326100E2F18F /* MoreScreenView.m */; };
8480BEA61C14378C00E2F18F /* ScopeTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8480BEA51C14378C00E2F18F /* ScopeTableView.m */; };
8480BEA91C143A0800E2F18F /* GroupTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8480BEA81C143A0800E2F18F /* GroupTableView.m */; };
8480BEAC1C143A1600E2F18F /* CategoryTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8480BEAB1C143A1600E2F18F /* CategoryTableView.m */; };
8480BEAF1C143A2200E2F18F /* TimeTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8480BEAE1C143A2200E2F18F /* TimeTableView.m */; };
8480BEB21C143A4100E2F18F /* StateTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8480BEB11C143A4100E2F18F /* StateTableView.m */; };
84846E971BE069BC0010550A /* DateButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 84846E961BE069BC0010550A /* DateButton.m */; };
84846E9A1BE07CDF0010550A /* RankingListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84846E991BE07CDF0010550A /* RankingListCell.m */; };
848699B01BDF810900859DFE /* InspectListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8486999F1BDF810900859DFE /* InspectListCell.m */; };
848699B21BDF810900859DFE /* InspectListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 848699A41BDF810900859DFE /* InspectListViewController.m */; };
848699B31BDF810900859DFE /* InspectTaskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 848699A81BDF810900859DFE /* InspectTaskViewController.m */; };
848699B61BDF812F00859DFE /* RankingListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 848699B51BDF812F00859DFE /* RankingListViewController.m */; };
8487D7721BF19A9C00E63E90 /* SearchToolBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 8487D7711BF19A9C00E63E90 /* SearchToolBar.m */; };
8487D8091BF20FAD00E63E90 /* TaxisView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8487D8081BF20FAD00E63E90 /* TaxisView.m */; };
8487D80C1BF218F900E63E90 /* MenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8487D80B1BF218F900E63E90 /* MenuView.m */; };
848A201D1C180C1900422FAB /* OnLineCompleteDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 848A201C1C180C1900422FAB /* OnLineCompleteDetailCell.m */; };
848A20271C183FCB00422FAB /* OnLineResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 848A20261C183FCA00422FAB /* OnLineResultViewController.m */; };
848A202D1C184DC600422FAB /* OnLineResultDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 848A202C1C184DC600422FAB /* OnLineResultDetailCell.m */; };
8490C4C31BF9A394006B6569 /* CustomPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 8490C4C21BF9A394006B6569 /* CustomPageControl.m */; };
8490C4C61BF9CE85006B6569 /* HomeTitleTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8490C4C51BF9CE85006B6569 /* HomeTitleTableCell.m */; };
8490C4D31BF9DEF0006B6569 /* PictureTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8490C4CE1BF9DEF0006B6569 /* PictureTableCell.m */; };
8490C4D41BF9DEF0006B6569 /* PictureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8490C4D21BF9DEF0006B6569 /* PictureViewController.m */; };
8490C4D71BF9DF1D006B6569 /* PictureStoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8490C4D61BF9DF1D006B6569 /* PictureStoryViewController.m */; };
8491F6C61C2BCD8D00A00395 /* SpotCheckTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8491F6C51C2BCD8D00A00395 /* SpotCheckTableViewCell.m */; };
84945F1B1C2A6A6300C1793C /* AboutMeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84945F1A1C2A6A6300C1793C /* AboutMeViewController.m */; };
84970DEF1BD8DD8A00C1728A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970DEE1BD8DD8A00C1728A /* main.m */; };
84970DFA1BD8DD8A00C1728A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 84970DF91BD8DD8A00C1728A /* Assets.xcassets */; };
84970DFD1BD8DD8A00C1728A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 84970DFB1BD8DD8A00C1728A /* LaunchScreen.storyboard */; };
84970E081BD8DD8A00C1728A /* redstarTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E071BD8DD8A00C1728A /* redstarTests.m */; };
84970E131BD8DD8A00C1728A /* redstarUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E121BD8DD8A00C1728A /* redstarUITests.m */; };
84970E281BD8DEFE00C1728A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E231BD8DEFE00C1728A /* AppDelegate.m */; };
84970E361BD8E09D00C1728A /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E351BD8E09D00C1728A /* LoginViewController.m */; };
84970E391BD8E0B300C1728A /* LoginView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E381BD8E0B300C1728A /* LoginView.m */; };
8497B62B1C043671007ECBE6 /* InspectTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8497B62A1C043671007ECBE6 /* InspectTableView.m */; };
849A18431C152CEE00071600 /* AddPictureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 849A18421C152CEE00071600 /* AddPictureViewController.m */; };
849A18461C152EBA00071600 /* AddPictureTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 849A18451C152EBA00071600 /* AddPictureTableCell.m */; };
849B2F711C0CA22F005D809F /* AnnoContentTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 849B2F701C0CA22F005D809F /* AnnoContentTableViewCell.m */; };
849B2F741C0CA60E005D809F /* AnnounceDetailFootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 849B2F731C0CA60E005D809F /* AnnounceDetailFootView.m */; };
849B2F771C0CABE6005D809F /* AnnounceDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 849B2F761C0CABE6005D809F /* AnnounceDetailModel.m */; };
84A2270E1C229409002766DC /* RankPickView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A2270D1C229409002766DC /* RankPickView.m */; };
84A673881C0B50B4000F828E /* OnLineCompleteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673871C0B50B4000F828E /* OnLineCompleteViewController.m */; };
84A6738E1C0BE2D0000F828E /* OnLineCompleteCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A6738D1C0BE2D0000F828E /* OnLineCompleteCell.m */; };
84A673911C0C2681000F828E /* FunctionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673901C0C2681000F828E /* FunctionViewController.m */; };
84A673BE1C0C7AEB000F828E /* AnnoTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673B41C0C7AEB000F828E /* AnnoTableViewCell.m */; };
84A673BF1C0C7AEB000F828E /* AnnounceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673B71C0C7AEB000F828E /* AnnounceModel.m */; };
84A673C01C0C7AEB000F828E /* FuncItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673BA1C0C7AEB000F828E /* FuncItem.m */; };
84A673C11C0C7AEB000F828E /* AnnounceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673BD1C0C7AEB000F828E /* AnnounceViewController.m */; };
84A673C41C0C7B0A000F828E /* AnnoDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673C31C0C7B0A000F828E /* AnnoDetailViewController.m */; };
84A673C71C0C7E0C000F828E /* AnnounceDetailHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84A673C61C0C7E0C000F828E /* AnnounceDetailHeadView.m */; };
84AD4F221BF42F8E00BFB37C /* classfiy.plist in Resources */ = {isa = PBXBuildFile; fileRef = 84AD4F211BF42F8E00BFB37C /* classfiy.plist */; };
84AD4F261BF4356A00BFB37C /* TaskModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F251BF4356A00BFB37C /* TaskModel.m */; };
84AD4F291BF4360E00BFB37C /* TaskGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F281BF4360E00BFB37C /* TaskGroup.m */; };
84AD4F2F1BF4370E00BFB37C /* InspectHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F2E1BF4370E00BFB37C /* InspectHeaderView.m */; };
84AD4F361BF45BEB00BFB37C /* InspectSortTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F351BF45BEB00BFB37C /* InspectSortTableCell.m */; };
84AD4F3A1BF4844600BFB37C /* RankDetailHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F391BF4844600BFB37C /* RankDetailHeaderView.m */; };
84AD4F3D1BF4894D00BFB37C /* RankDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F3C1BF4894D00BFB37C /* RankDetailView.m */; };
84AD4F3F1BF498A900BFB37C /* ranking.plist in Resources */ = {isa = PBXBuildFile; fileRef = 84AD4F3E1BF498A900BFB37C /* ranking.plist */; };
84AD4F461BF4A9E800BFB37C /* RankHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F451BF4A9E800BFB37C /* RankHeadView.m */; };
84B4765A1C2E4B37006C6488 /* PicCategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B476591C2E4B37006C6488 /* PicCategoryViewController.m */; };
84BB16A21C191A7F00383A64 /* OnLineResultFootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84BB16A11C191A7F00383A64 /* OnLineResultFootView.m */; };
84C9574D1BDB344900083584 /* UIBarButtonItem+Create.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C9574A1BDB344900083584 /* UIBarButtonItem+Create.m */; };
84C9574E1BDB344900083584 /* UIView+Frame.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C9574C1BDB344900083584 /* UIView+Frame.m */; };
84C972961C1ABE08003A3276 /* PicScreenView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C972951C1ABE08003A3276 /* PicScreenView.m */; };
84C972991C1ADB9C003A3276 /* PictureDetailTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C972981C1ADB9C003A3276 /* PictureDetailTableCell.m */; };
84C9729C1C1ADC5B003A3276 /* PictureTextTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C9729B1C1ADC5B003A3276 /* PictureTextTableCell.m */; };
84C9729F1C1ADD17003A3276 /* PictureCommentTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C9729E1C1ADD17003A3276 /* PictureCommentTableCell.m */; };
84CC34CC1C093C2F002F10E2 /* OnLineTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34C11C093C2F002F10E2 /* OnLineTableViewCell.m */; };
84CC34CD1C093C2F002F10E2 /* OnLineFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34C41C093C2F002F10E2 /* OnLineFooterView.m */; };
84CC34CE1C093C2F002F10E2 /* OnLineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34C71C093C2F002F10E2 /* OnLineViewController.m */; };
84CC34D11C093C5E002F10E2 /* LookOnLineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34D01C093C5E002F10E2 /* LookOnLineViewController.m */; };
84CC34D41C094476002F10E2 /* StandardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34D31C094476002F10E2 /* StandardViewController.m */; };
84CC34D81C094682002F10E2 /* StandardTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34D71C094682002F10E2 /* StandardTableViewCell.m */; };
84CC34DF1C0953C3002F10E2 /* HandOutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34DE1C0953C3002F10E2 /* HandOutViewController.m */; };
84CC34E21C09583D002F10E2 /* LookOnLineTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34E11C09583D002F10E2 /* LookOnLineTableViewCell.m */; };
84CC34EC1C09AD98002F10E2 /* LookOnLineDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34EB1C09AD98002F10E2 /* LookOnLineDetailView.m */; };
84CC34EF1C09AEC0002F10E2 /* LookOnLineDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CC34EE1C09AEC0002F10E2 /* LookOnLineDetailViewController.m */; };
84CEB1671C28E8970072ED0A /* SpotCheckModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CEB1661C28E8970072ED0A /* SpotCheckModel.m */; };
84CEB16B1C28F0E20072ED0A /* LookOnLineModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CEB16A1C28F0E20072ED0A /* LookOnLineModel.m */; };
84CEB16F1C2946DB0072ED0A /* OnLineDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CEB16E1C2946DB0072ED0A /* OnLineDetailModel.m */; };
84CEB1721C2946EC0072ED0A /* StoreDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CEB1711C2946EC0072ED0A /* StoreDetailModel.m */; };
84CF0F1E1BE9B40400C855CE /* InspectDetailFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CF0F1D1BE9B40400C855CE /* InspectDetailFooterView.m */; };
84CF0FA21BE9EDA900C855CE /* TakePhotoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CF0FA11BE9EDA900C855CE /* TakePhotoView.m */; };
84D2F5171C2CD3D400651EFB /* SOPViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D2F5161C2CD3D400651EFB /* SOPViewController.m */; };
84D2F51A1C2CE67500651EFB /* SOPTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D2F5191C2CE67500651EFB /* SOPTableView.m */; };
84D2F5201C2D213400651EFB /* AttachmentTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D2F51F1C2D213400651EFB /* AttachmentTableViewCell.m */; };
84D2F5341C2D739700651EFB /* RankDetailTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D2F52C1C2D739700651EFB /* RankDetailTableCell.m */; };
84D2F5351C2D739700651EFB /* RankScrollTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D2F52E1C2D739700651EFB /* RankScrollTableViewCell.m */; };
84D2F5361C2D739700651EFB /* RankSectionTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D2F5301C2D739700651EFB /* RankSectionTableCell.m */; };
84D2F5371C2D739700651EFB /* RankDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D2F5331C2D739700651EFB /* RankDetailViewController.m */; };
84D3E5F01C04BC8C001FF1DD /* InspectUploadedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D3E5EF1C04BC8C001FF1DD /* InspectUploadedViewController.m */; };
84D3E5F31C04BCD3001FF1DD /* InspectNotUploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D3E5F21C04BCD3001FF1DD /* InspectNotUploadViewController.m */; };
84D3E5F91C04BD8E001FF1DD /* InspectNotUpLoadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D3E5F81C04BD8E001FF1DD /* InspectNotUpLoadCell.m */; };
84D3E6021C04DA85001FF1DD /* InspectUpLoadFootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D3E6011C04DA85001FF1DD /* InspectUpLoadFootView.m */; };
84D554EE1C0EDFB8006C9AD0 /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D554ED1C0EDFB8006C9AD0 /* SearchViewController.m */; };
84D80EB51BF714BE00A10EA4 /* GroupItems.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D80EB21BF714BE00A10EA4 /* GroupItems.m */; };
84D80EB61BF714BE00A10EA4 /* GroupTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D80EB41BF714BE00A10EA4 /* GroupTabBar.m */; };
84D8257F1BDD2F7E00CC61F7 /* MineTableFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D8257E1BDD2F7E00CC61F7 /* MineTableFooterView.m */; };
84D825821BDD35E000CC61F7 /* HomeHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D825811BDD35E000CC61F7 /* HomeHeaderView.m */; };
84D8636E1C1148EC00E4F4CC /* InpectPictureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D863691C1148EC00E4F4CC /* InpectPictureCell.m */; };
84D8636F1C1148EC00E4F4CC /* InspectAddCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D8636B1C1148EC00E4F4CC /* InspectAddCell.m */; };
84D863701C1148EC00E4F4CC /* InspectPicAddCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D8636D1C1148EC00E4F4CC /* InspectPicAddCell.m */; };
84D863731C11923F00E4F4CC /* AddQuestionTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D863721C11923F00E4F4CC /* AddQuestionTableCell.m */; };
84D98D131C210F3300C7C96F /* RankScreenTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D98D121C210F3300C7C96F /* RankScreenTableViewCell.m */; };
84DB9BC41BDCD4B600822CC4 /* CustomDropMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DB9BC31BDCD4B600822CC4 /* CustomDropMenuView.m */; };
84DB9BC71BDCD67200822CC4 /* UIView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DB9BC61BDCD67200822CC4 /* UIView+Extension.m */; };
84DC873E1C24E90E00811037 /* AddPicTextTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DC873D1C24E90E00811037 /* AddPicTextTableViewCell.m */; };
84DC87411C24F33900811037 /* AddButtonTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DC87401C24F33900811037 /* AddButtonTableViewCell.m */; };
84E0ABCD1BFB082E001C8F45 /* TaskDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E0ABCC1BFB082E001C8F45 /* TaskDetailModel.m */; };
84E363D21BFAC5200061547E /* TaskListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E363D11BFAC5200061547E /* TaskListModel.m */; };
84E420411BE849FC00689976 /* QuestionDescribeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E420401BE849FC00689976 /* QuestionDescribeCell.m */; };
84E420441BE84A2300689976 /* QuestionCommentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E420431BE84A2300689976 /* QuestionCommentCell.m */; };
84E420471BE88AE000689976 /* RootTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E420461BE88AE000689976 /* RootTabBarController.m */; };
84E7BD801C16809E0030C441 /* LookOnLineFootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E7BD7F1C16809E0030C441 /* LookOnLineFootView.m */; };
84ECCF181C01FA2600EA4960 /* QuestionDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84ECCF171C01FA2600EA4960 /* QuestionDetailModel.m */; };
84ECCF1B1C0210F000EA4960 /* CommentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84ECCF1A1C0210F000EA4960 /* CommentModel.m */; };
84ED5DD81BF2E64300A1BB6D /* ScreenView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84ED5DD71BF2E64300A1BB6D /* ScreenView.m */; };
84EE92771C2FFDEB000EF5BF /* AttachmentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EE92761C2FFDEB000EF5BF /* AttachmentModel.m */; };
84F1669B1BE715E40061D350 /* ZanButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F1669A1BE715E40061D350 /* ZanButton.m */; };
84F30DA41BFC19F200CBAD13 /* RankListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F30DA31BFC19F200CBAD13 /* RankListModel.m */; };
84F57C461BEC388A00DDEEB1 /* CommentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C451BEC388A00DDEEB1 /* CommentView.m */; };
84F57C4C1BEC785E00DDEEB1 /* AddQuestionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C4B1BEC785E00DDEEB1 /* AddQuestionViewController.m */; };
84F57C501BEC7AA300DDEEB1 /* AddQuestionFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C4F1BEC7AA300DDEEB1 /* AddQuestionFooterView.m */; };
84F57C9C1BECA73800DDEEB1 /* StarBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C9B1BECA73800DDEEB1 /* StarBar.m */; };
84FAC7611BFF2C6E00FD094D /* NoDataView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FAC7601BFF2C6E00FD094D /* NoDataView.m */; };
84FD89F21BD9FC71006E442A /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FD89F11BD9FC71006E442A /* HomeViewController.m */; };
84FD8A0A1BDA01D1006E442A /* MineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FD8A091BDA01D1006E442A /* MineViewController.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
84970E041BD8DD8A00C1728A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84970DE21BD8DD8A00C1728A /* Project object */;
proxyType = 1;
remoteGlobalIDString = 84970DE91BD8DD8A00C1728A;
remoteInfo = redstar;
};
84970E0F1BD8DD8A00C1728A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84970DE21BD8DD8A00C1728A /* Project object */;
proxyType = 1;
remoteGlobalIDString = 84970DE91BD8DD8A00C1728A;
remoteInfo = redstar;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
083F3F95EB690FA24FEC0C8E /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
13B0DDED3E0E584D79B395CF /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
6C6D8B0ECF8531E34D0DFF6B /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
8409BDE71C281ACD00354460 /* CheckBoxButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CheckBoxButton.h; sourceTree = "<group>"; };
8409BDE81C281ACD00354460 /* CheckBoxButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CheckBoxButton.m; sourceTree = "<group>"; };
8409BDE91C281ACD00354460 /* SelectYetTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectYetTableViewCell.h; sourceTree = "<group>"; };
8409BDEA1C281ACD00354460 /* SelectYetTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectYetTableViewCell.m; sourceTree = "<group>"; };
8409BDEB1C281ACD00354460 /* TreeNodeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TreeNodeCell.h; sourceTree = "<group>"; };
8409BDEC1C281ACD00354460 /* TreeNodeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TreeNodeCell.m; sourceTree = "<group>"; };
8409BDEE1C281ACD00354460 /* TreeNodeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TreeNodeModel.h; sourceTree = "<group>"; };
8409BDEF1C281ACD00354460 /* TreeNodeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TreeNodeModel.m; sourceTree = "<group>"; };
8409BDF11C281ACD00354460 /* SelectStoreHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectStoreHeadView.h; sourceTree = "<group>"; };
8409BDF21C281ACD00354460 /* SelectStoreHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectStoreHeadView.m; sourceTree = "<group>"; };
8409BDF31C281ACD00354460 /* TreeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TreeView.h; sourceTree = "<group>"; };
8409BDF41C281ACD00354460 /* TreeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TreeView.m; sourceTree = "<group>"; };
8409BDF61C281ACD00354460 /* SelectStoreViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectStoreViewController.h; sourceTree = "<group>"; };
8409BDF71C281ACD00354460 /* SelectStoreViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectStoreViewController.m; sourceTree = "<group>"; };
8419EAD21BEDC98F002635ED /* HttpClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpClient.h; sourceTree = "<group>"; };
8419EAD31BEDC98F002635ED /* HttpClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpClient.m; sourceTree = "<group>"; };
841D24F61BEB473C0005CC9F /* CheckPicViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CheckPicViewController.h; sourceTree = "<group>"; };
841D24F71BEB473C0005CC9F /* CheckPicViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CheckPicViewController.m; sourceTree = "<group>"; };
841D24F91BEB75CA0005CC9F /* QuestionDetailFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDetailFooterView.h; sourceTree = "<group>"; };
841D24FA1BEB75CA0005CC9F /* QuestionDetailFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDetailFooterView.m; sourceTree = "<group>"; };
842547FA1BF03977006C79C5 /* QuestionModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionModel.h; sourceTree = "<group>"; };
842547FB1BF03977006C79C5 /* QuestionModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionModel.m; sourceTree = "<group>"; };
843D1B9C1C0B3F7600E30002 /* SpotCheckOnLineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpotCheckOnLineViewController.h; sourceTree = "<group>"; };
843D1B9D1C0B3F7600E30002 /* SpotCheckOnLineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SpotCheckOnLineViewController.m; sourceTree = "<group>"; };
8442BA5A1BDB8FDB005E5657 /* MineTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineTableHeaderView.h; sourceTree = "<group>"; };
8442BA5B1BDB8FDB005E5657 /* MineTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineTableHeaderView.m; sourceTree = "<group>"; };
846206B31C06AF700015C456 /* RankListHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankListHeaderView.h; sourceTree = "<group>"; };
846206B41C06AF700015C456 /* RankListHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankListHeaderView.m; sourceTree = "<group>"; };
846206B61C06AFCA0015C456 /* RankCommentModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankCommentModel.h; sourceTree = "<group>"; };
846206B71C06AFCA0015C456 /* RankCommentModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankCommentModel.m; sourceTree = "<group>"; };
846206B91C06AFF50015C456 /* RankCommentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankCommentCell.h; sourceTree = "<group>"; };
846206BA1C06AFF50015C456 /* RankCommentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankCommentCell.m; sourceTree = "<group>"; };
8462C6EA1BF5F3BE00344DDD /* MenuButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MenuButton.h; sourceTree = "<group>"; };
8462C6EB1BF5F3BE00344DDD /* MenuButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MenuButton.m; sourceTree = "<group>"; };
846ABDF31C1E5E780020C331 /* PictureListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureListModel.h; sourceTree = "<group>"; };
846ABDF41C1E5E780020C331 /* PictureListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureListModel.m; sourceTree = "<group>"; };
846ABDF71C1E74430020C331 /* PictureDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureDetailModel.h; sourceTree = "<group>"; };
846ABDF81C1E74430020C331 /* PictureDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureDetailModel.m; sourceTree = "<group>"; };
846ABDFA1C1EAB160020C331 /* PicTextModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PicTextModel.h; sourceTree = "<group>"; };
846ABDFB1C1EAB160020C331 /* PicTextModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PicTextModel.m; sourceTree = "<group>"; };
84720BBF1C0377D300314099 /* CommentWithStarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentWithStarView.h; sourceTree = "<group>"; };
84720BC01C0377D300314099 /* CommentWithStarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentWithStarView.m; sourceTree = "<group>"; };
8473E3861C1BBFF600960257 /* InspectTaskDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectTaskDetailCell.h; sourceTree = "<group>"; };
8473E3871C1BBFF600960257 /* InspectTaskDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectTaskDetailCell.m; sourceTree = "<group>"; };
8473E3891C1BCFC400960257 /* InspectTitleTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectTitleTableViewCell.h; sourceTree = "<group>"; };
8473E38A1C1BCFC400960257 /* InspectTitleTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectTitleTableViewCell.m; sourceTree = "<group>"; };
8474A01A1BE368D700315F30 /* HomeCellItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeCellItem.h; sourceTree = "<group>"; };
8474A01B1BE368D700315F30 /* HomeCellItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeCellItem.m; sourceTree = "<group>"; };
8474C5811BE751A2007DCF19 /* CommonFunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonFunc.h; sourceTree = "<group>"; };
8474C5821BE751A2007DCF19 /* CommonFunc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommonFunc.m; sourceTree = "<group>"; };
8474C5851BE77311007DCF19 /* Url.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Url.h; sourceTree = "<group>"; };
8474C58B1BE78A85007DCF19 /* QuestionListTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionListTableCell.h; sourceTree = "<group>"; };
8474C58C1BE78A85007DCF19 /* QuestionListTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionListTableCell.m; sourceTree = "<group>"; };
8474C58F1BE78A85007DCF19 /* QuestionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionViewController.h; sourceTree = "<group>"; };
8474C5901BE78A85007DCF19 /* QuestionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionViewController.m; sourceTree = "<group>"; };
8474C5931BE78AE1007DCF19 /* QuestionDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDetailViewController.h; sourceTree = "<group>"; };
8474C5941BE78AE1007DCF19 /* QuestionDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDetailViewController.m; sourceTree = "<group>"; };
8474C5971BE78BBC007DCF19 /* QuestionDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDetailCell.h; sourceTree = "<group>"; };
8474C5981BE78BBC007DCF19 /* QuestionDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDetailCell.m; sourceTree = "<group>"; };
8480BEA01C14326100E2F18F /* MoreScreenView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MoreScreenView.h; sourceTree = "<group>"; };
8480BEA11C14326100E2F18F /* MoreScreenView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MoreScreenView.m; sourceTree = "<group>"; };
8480BEA41C14378C00E2F18F /* ScopeTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScopeTableView.h; sourceTree = "<group>"; };
8480BEA51C14378C00E2F18F /* ScopeTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScopeTableView.m; sourceTree = "<group>"; };
8480BEA71C143A0800E2F18F /* GroupTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupTableView.h; sourceTree = "<group>"; };
8480BEA81C143A0800E2F18F /* GroupTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupTableView.m; sourceTree = "<group>"; };
8480BEAA1C143A1600E2F18F /* CategoryTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryTableView.h; sourceTree = "<group>"; };
8480BEAB1C143A1600E2F18F /* CategoryTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryTableView.m; sourceTree = "<group>"; };
8480BEAD1C143A2200E2F18F /* TimeTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeTableView.h; sourceTree = "<group>"; };
8480BEAE1C143A2200E2F18F /* TimeTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeTableView.m; sourceTree = "<group>"; };
8480BEB01C143A4100E2F18F /* StateTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateTableView.h; sourceTree = "<group>"; };
8480BEB11C143A4100E2F18F /* StateTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateTableView.m; sourceTree = "<group>"; };
84846E951BE069BC0010550A /* DateButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateButton.h; sourceTree = "<group>"; };
84846E961BE069BC0010550A /* DateButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateButton.m; sourceTree = "<group>"; };
84846E981BE07CDF0010550A /* RankingListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankingListCell.h; sourceTree = "<group>"; };
84846E991BE07CDF0010550A /* RankingListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankingListCell.m; sourceTree = "<group>"; };
8486999E1BDF810900859DFE /* InspectListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectListCell.h; sourceTree = "<group>"; };
8486999F1BDF810900859DFE /* InspectListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectListCell.m; sourceTree = "<group>"; };
848699A31BDF810900859DFE /* InspectListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectListViewController.h; sourceTree = "<group>"; };
848699A41BDF810900859DFE /* InspectListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectListViewController.m; sourceTree = "<group>"; };
848699A71BDF810900859DFE /* InspectTaskViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectTaskViewController.h; sourceTree = "<group>"; };
848699A81BDF810900859DFE /* InspectTaskViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectTaskViewController.m; sourceTree = "<group>"; };
848699B41BDF812F00859DFE /* RankingListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankingListViewController.h; sourceTree = "<group>"; };
848699B51BDF812F00859DFE /* RankingListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankingListViewController.m; sourceTree = "<group>"; };
8487D7701BF19A9C00E63E90 /* SearchToolBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchToolBar.h; sourceTree = "<group>"; };
8487D7711BF19A9C00E63E90 /* SearchToolBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchToolBar.m; sourceTree = "<group>"; };
8487D8071BF20FAD00E63E90 /* TaxisView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaxisView.h; sourceTree = "<group>"; };
8487D8081BF20FAD00E63E90 /* TaxisView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaxisView.m; sourceTree = "<group>"; };
8487D80A1BF218F900E63E90 /* MenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MenuView.h; sourceTree = "<group>"; };
8487D80B1BF218F900E63E90 /* MenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MenuView.m; sourceTree = "<group>"; };
848A201B1C180C1900422FAB /* OnLineCompleteDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineCompleteDetailCell.h; sourceTree = "<group>"; };
848A201C1C180C1900422FAB /* OnLineCompleteDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineCompleteDetailCell.m; sourceTree = "<group>"; };
848A20251C183FCA00422FAB /* OnLineResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineResultViewController.h; sourceTree = "<group>"; };
848A20261C183FCA00422FAB /* OnLineResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineResultViewController.m; sourceTree = "<group>"; };
848A202B1C184DC600422FAB /* OnLineResultDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineResultDetailCell.h; sourceTree = "<group>"; };
848A202C1C184DC600422FAB /* OnLineResultDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineResultDetailCell.m; sourceTree = "<group>"; };
8490C4C11BF9A394006B6569 /* CustomPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomPageControl.h; sourceTree = "<group>"; };
8490C4C21BF9A394006B6569 /* CustomPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomPageControl.m; sourceTree = "<group>"; };
8490C4C41BF9CE85006B6569 /* HomeTitleTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeTitleTableCell.h; sourceTree = "<group>"; };
8490C4C51BF9CE85006B6569 /* HomeTitleTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeTitleTableCell.m; sourceTree = "<group>"; };
8490C4CD1BF9DEF0006B6569 /* PictureTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureTableCell.h; sourceTree = "<group>"; };
8490C4CE1BF9DEF0006B6569 /* PictureTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureTableCell.m; sourceTree = "<group>"; };
8490C4D11BF9DEF0006B6569 /* PictureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureViewController.h; sourceTree = "<group>"; };
8490C4D21BF9DEF0006B6569 /* PictureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureViewController.m; sourceTree = "<group>"; };
8490C4D51BF9DF1D006B6569 /* PictureStoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureStoryViewController.h; sourceTree = "<group>"; };
8490C4D61BF9DF1D006B6569 /* PictureStoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureStoryViewController.m; sourceTree = "<group>"; };
8491F6C41C2BCD8D00A00395 /* SpotCheckTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpotCheckTableViewCell.h; sourceTree = "<group>"; };
8491F6C51C2BCD8D00A00395 /* SpotCheckTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SpotCheckTableViewCell.m; sourceTree = "<group>"; };
84945F191C2A6A6300C1793C /* AboutMeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutMeViewController.h; sourceTree = "<group>"; };
84945F1A1C2A6A6300C1793C /* AboutMeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutMeViewController.m; sourceTree = "<group>"; };
84970DEA1BD8DD8A00C1728A /* redstar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = redstar.app; sourceTree = BUILT_PRODUCTS_DIR; };
84970DEE1BD8DD8A00C1728A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
84970DF91BD8DD8A00C1728A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
84970DFC1BD8DD8A00C1728A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
84970DFE1BD8DD8A00C1728A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
84970E031BD8DD8A00C1728A /* redstarTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = redstarTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
84970E071BD8DD8A00C1728A /* redstarTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = redstarTests.m; sourceTree = "<group>"; };
84970E091BD8DD8A00C1728A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
84970E0E1BD8DD8A00C1728A /* redstarUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = redstarUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
84970E121BD8DD8A00C1728A /* redstarUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = redstarUITests.m; sourceTree = "<group>"; };
84970E141BD8DD8A00C1728A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
84970E221BD8DEFE00C1728A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
84970E231BD8DEFE00C1728A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
84970E341BD8E09D00C1728A /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
84970E351BD8E09D00C1728A /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
84970E371BD8E0B300C1728A /* LoginView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginView.h; sourceTree = "<group>"; };
84970E381BD8E0B300C1728A /* LoginView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginView.m; sourceTree = "<group>"; };
84970E3F1BD9127A00C1728A /* Constant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Constant.h; sourceTree = "<group>"; };
8497B6291C043671007ECBE6 /* InspectTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectTableView.h; sourceTree = "<group>"; };
8497B62A1C043671007ECBE6 /* InspectTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectTableView.m; sourceTree = "<group>"; };
849A18411C152CEE00071600 /* AddPictureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddPictureViewController.h; sourceTree = "<group>"; };
849A18421C152CEE00071600 /* AddPictureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddPictureViewController.m; sourceTree = "<group>"; };
849A18441C152EBA00071600 /* AddPictureTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddPictureTableCell.h; sourceTree = "<group>"; };
849A18451C152EBA00071600 /* AddPictureTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddPictureTableCell.m; sourceTree = "<group>"; };
849B2F6F1C0CA22F005D809F /* AnnoContentTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnoContentTableViewCell.h; sourceTree = "<group>"; };
849B2F701C0CA22F005D809F /* AnnoContentTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnoContentTableViewCell.m; sourceTree = "<group>"; };
849B2F721C0CA60E005D809F /* AnnounceDetailFootView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnounceDetailFootView.h; sourceTree = "<group>"; };
849B2F731C0CA60E005D809F /* AnnounceDetailFootView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnounceDetailFootView.m; sourceTree = "<group>"; };
849B2F751C0CABE6005D809F /* AnnounceDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnounceDetailModel.h; sourceTree = "<group>"; };
849B2F761C0CABE6005D809F /* AnnounceDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnounceDetailModel.m; sourceTree = "<group>"; };
84A2270C1C229409002766DC /* RankPickView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankPickView.h; sourceTree = "<group>"; };
84A2270D1C229409002766DC /* RankPickView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankPickView.m; sourceTree = "<group>"; };
84A673861C0B50B4000F828E /* OnLineCompleteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineCompleteViewController.h; sourceTree = "<group>"; };
84A673871C0B50B4000F828E /* OnLineCompleteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineCompleteViewController.m; sourceTree = "<group>"; };
84A6738C1C0BE2D0000F828E /* OnLineCompleteCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineCompleteCell.h; sourceTree = "<group>"; };
84A6738D1C0BE2D0000F828E /* OnLineCompleteCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineCompleteCell.m; sourceTree = "<group>"; };
84A6738F1C0C2681000F828E /* FunctionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FunctionViewController.h; sourceTree = "<group>"; };
84A673901C0C2681000F828E /* FunctionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FunctionViewController.m; sourceTree = "<group>"; };
84A673B31C0C7AEB000F828E /* AnnoTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnoTableViewCell.h; sourceTree = "<group>"; };
84A673B41C0C7AEB000F828E /* AnnoTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnoTableViewCell.m; sourceTree = "<group>"; };
84A673B61C0C7AEB000F828E /* AnnounceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnounceModel.h; sourceTree = "<group>"; };
84A673B71C0C7AEB000F828E /* AnnounceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnounceModel.m; sourceTree = "<group>"; };
84A673B91C0C7AEB000F828E /* FuncItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FuncItem.h; sourceTree = "<group>"; };
84A673BA1C0C7AEB000F828E /* FuncItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FuncItem.m; sourceTree = "<group>"; };
84A673BC1C0C7AEB000F828E /* AnnounceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnounceViewController.h; sourceTree = "<group>"; };
84A673BD1C0C7AEB000F828E /* AnnounceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnounceViewController.m; sourceTree = "<group>"; };
84A673C21C0C7B0A000F828E /* AnnoDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnoDetailViewController.h; sourceTree = "<group>"; };
84A673C31C0C7B0A000F828E /* AnnoDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnoDetailViewController.m; sourceTree = "<group>"; };
84A673C51C0C7E0C000F828E /* AnnounceDetailHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnounceDetailHeadView.h; sourceTree = "<group>"; };
84A673C61C0C7E0C000F828E /* AnnounceDetailHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnounceDetailHeadView.m; sourceTree = "<group>"; };
84AD4F211BF42F8E00BFB37C /* classfiy.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = classfiy.plist; sourceTree = "<group>"; };
84AD4F241BF4356A00BFB37C /* TaskModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskModel.h; sourceTree = "<group>"; };
84AD4F251BF4356A00BFB37C /* TaskModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaskModel.m; sourceTree = "<group>"; };
84AD4F271BF4360E00BFB37C /* TaskGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskGroup.h; sourceTree = "<group>"; };
84AD4F281BF4360E00BFB37C /* TaskGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaskGroup.m; sourceTree = "<group>"; };
84AD4F2D1BF4370E00BFB37C /* InspectHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectHeaderView.h; sourceTree = "<group>"; };
84AD4F2E1BF4370E00BFB37C /* InspectHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectHeaderView.m; sourceTree = "<group>"; };
84AD4F341BF45BEB00BFB37C /* InspectSortTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectSortTableCell.h; sourceTree = "<group>"; };
84AD4F351BF45BEB00BFB37C /* InspectSortTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectSortTableCell.m; sourceTree = "<group>"; };
84AD4F381BF4844600BFB37C /* RankDetailHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailHeaderView.h; sourceTree = "<group>"; };
84AD4F391BF4844600BFB37C /* RankDetailHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailHeaderView.m; sourceTree = "<group>"; };
84AD4F3B1BF4894D00BFB37C /* RankDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailView.h; sourceTree = "<group>"; };
84AD4F3C1BF4894D00BFB37C /* RankDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailView.m; sourceTree = "<group>"; };
84AD4F3E1BF498A900BFB37C /* ranking.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = ranking.plist; sourceTree = "<group>"; };
84AD4F441BF4A9E800BFB37C /* RankHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankHeadView.h; sourceTree = "<group>"; };
84AD4F451BF4A9E800BFB37C /* RankHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankHeadView.m; sourceTree = "<group>"; };
84B476581C2E4B37006C6488 /* PicCategoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PicCategoryViewController.h; sourceTree = "<group>"; };
84B476591C2E4B37006C6488 /* PicCategoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PicCategoryViewController.m; sourceTree = "<group>"; };
84BB16A01C191A7F00383A64 /* OnLineResultFootView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineResultFootView.h; sourceTree = "<group>"; };
84BB16A11C191A7F00383A64 /* OnLineResultFootView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineResultFootView.m; sourceTree = "<group>"; };
84C957491BDB344900083584 /* UIBarButtonItem+Create.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+Create.h"; sourceTree = "<group>"; };
84C9574A1BDB344900083584 /* UIBarButtonItem+Create.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+Create.m"; sourceTree = "<group>"; };
84C9574B1BDB344900083584 /* UIView+Frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Frame.h"; sourceTree = "<group>"; };
84C9574C1BDB344900083584 /* UIView+Frame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Frame.m"; sourceTree = "<group>"; };
84C9574F1BDB38AA00083584 /* redstar.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = redstar.pch; sourceTree = "<group>"; };
84C972941C1ABE08003A3276 /* PicScreenView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PicScreenView.h; sourceTree = "<group>"; };
84C972951C1ABE08003A3276 /* PicScreenView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PicScreenView.m; sourceTree = "<group>"; };
84C972971C1ADB9C003A3276 /* PictureDetailTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureDetailTableCell.h; sourceTree = "<group>"; };
84C972981C1ADB9C003A3276 /* PictureDetailTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureDetailTableCell.m; sourceTree = "<group>"; };
84C9729A1C1ADC5B003A3276 /* PictureTextTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureTextTableCell.h; sourceTree = "<group>"; };
84C9729B1C1ADC5B003A3276 /* PictureTextTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureTextTableCell.m; sourceTree = "<group>"; };
84C9729D1C1ADD17003A3276 /* PictureCommentTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureCommentTableCell.h; sourceTree = "<group>"; };
84C9729E1C1ADD17003A3276 /* PictureCommentTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureCommentTableCell.m; sourceTree = "<group>"; };
84CC34C01C093C2F002F10E2 /* OnLineTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineTableViewCell.h; sourceTree = "<group>"; };
84CC34C11C093C2F002F10E2 /* OnLineTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineTableViewCell.m; sourceTree = "<group>"; };
84CC34C31C093C2F002F10E2 /* OnLineFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineFooterView.h; sourceTree = "<group>"; };
84CC34C41C093C2F002F10E2 /* OnLineFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineFooterView.m; sourceTree = "<group>"; };
84CC34C61C093C2F002F10E2 /* OnLineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineViewController.h; sourceTree = "<group>"; };
84CC34C71C093C2F002F10E2 /* OnLineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineViewController.m; sourceTree = "<group>"; };
84CC34CF1C093C5E002F10E2 /* LookOnLineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookOnLineViewController.h; sourceTree = "<group>"; };
84CC34D01C093C5E002F10E2 /* LookOnLineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LookOnLineViewController.m; sourceTree = "<group>"; };
84CC34D21C094476002F10E2 /* StandardViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StandardViewController.h; sourceTree = "<group>"; };
84CC34D31C094476002F10E2 /* StandardViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StandardViewController.m; sourceTree = "<group>"; };
84CC34D61C094682002F10E2 /* StandardTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StandardTableViewCell.h; sourceTree = "<group>"; };
84CC34D71C094682002F10E2 /* StandardTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StandardTableViewCell.m; sourceTree = "<group>"; };
84CC34DD1C0953C3002F10E2 /* HandOutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HandOutViewController.h; sourceTree = "<group>"; };
84CC34DE1C0953C3002F10E2 /* HandOutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HandOutViewController.m; sourceTree = "<group>"; };
84CC34E01C09583D002F10E2 /* LookOnLineTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookOnLineTableViewCell.h; sourceTree = "<group>"; };
84CC34E11C09583D002F10E2 /* LookOnLineTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LookOnLineTableViewCell.m; sourceTree = "<group>"; };
84CC34EA1C09AD98002F10E2 /* LookOnLineDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookOnLineDetailView.h; sourceTree = "<group>"; };
84CC34EB1C09AD98002F10E2 /* LookOnLineDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LookOnLineDetailView.m; sourceTree = "<group>"; };
84CC34ED1C09AEC0002F10E2 /* LookOnLineDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookOnLineDetailViewController.h; sourceTree = "<group>"; };
84CC34EE1C09AEC0002F10E2 /* LookOnLineDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LookOnLineDetailViewController.m; sourceTree = "<group>"; };
84CEB1651C28E8970072ED0A /* SpotCheckModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpotCheckModel.h; sourceTree = "<group>"; };
84CEB1661C28E8970072ED0A /* SpotCheckModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SpotCheckModel.m; sourceTree = "<group>"; };
84CEB1691C28F0E20072ED0A /* LookOnLineModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookOnLineModel.h; sourceTree = "<group>"; };
84CEB16A1C28F0E20072ED0A /* LookOnLineModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LookOnLineModel.m; sourceTree = "<group>"; };
84CEB16D1C2946DB0072ED0A /* OnLineDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineDetailModel.h; sourceTree = "<group>"; };
84CEB16E1C2946DB0072ED0A /* OnLineDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineDetailModel.m; sourceTree = "<group>"; };
84CEB1701C2946EC0072ED0A /* StoreDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreDetailModel.h; sourceTree = "<group>"; };
84CEB1711C2946EC0072ED0A /* StoreDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreDetailModel.m; sourceTree = "<group>"; };
84CF0F1C1BE9B40400C855CE /* InspectDetailFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectDetailFooterView.h; sourceTree = "<group>"; };
84CF0F1D1BE9B40400C855CE /* InspectDetailFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectDetailFooterView.m; sourceTree = "<group>"; };
84CF0FA01BE9EDA900C855CE /* TakePhotoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TakePhotoView.h; sourceTree = "<group>"; };
84CF0FA11BE9EDA900C855CE /* TakePhotoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TakePhotoView.m; sourceTree = "<group>"; };
84D2F5151C2CD3D400651EFB /* SOPViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SOPViewController.h; sourceTree = "<group>"; };
84D2F5161C2CD3D400651EFB /* SOPViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SOPViewController.m; sourceTree = "<group>"; };
84D2F5181C2CE67500651EFB /* SOPTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SOPTableView.h; sourceTree = "<group>"; };
84D2F5191C2CE67500651EFB /* SOPTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SOPTableView.m; sourceTree = "<group>"; };
84D2F51E1C2D213400651EFB /* AttachmentTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AttachmentTableViewCell.h; sourceTree = "<group>"; };
84D2F51F1C2D213400651EFB /* AttachmentTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AttachmentTableViewCell.m; sourceTree = "<group>"; };
84D2F52B1C2D739700651EFB /* RankDetailTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailTableCell.h; sourceTree = "<group>"; };
84D2F52C1C2D739700651EFB /* RankDetailTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailTableCell.m; sourceTree = "<group>"; };
84D2F52D1C2D739700651EFB /* RankScrollTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankScrollTableViewCell.h; sourceTree = "<group>"; };
84D2F52E1C2D739700651EFB /* RankScrollTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankScrollTableViewCell.m; sourceTree = "<group>"; };
84D2F52F1C2D739700651EFB /* RankSectionTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankSectionTableCell.h; sourceTree = "<group>"; };
84D2F5301C2D739700651EFB /* RankSectionTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankSectionTableCell.m; sourceTree = "<group>"; };
84D2F5321C2D739700651EFB /* RankDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailViewController.h; sourceTree = "<group>"; };
84D2F5331C2D739700651EFB /* RankDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailViewController.m; sourceTree = "<group>"; };
84D3E5EE1C04BC8C001FF1DD /* InspectUploadedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectUploadedViewController.h; sourceTree = "<group>"; };
84D3E5EF1C04BC8C001FF1DD /* InspectUploadedViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectUploadedViewController.m; sourceTree = "<group>"; };
84D3E5F11C04BCD3001FF1DD /* InspectNotUploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectNotUploadViewController.h; sourceTree = "<group>"; };
84D3E5F21C04BCD3001FF1DD /* InspectNotUploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectNotUploadViewController.m; sourceTree = "<group>"; };
84D3E5F71C04BD8E001FF1DD /* InspectNotUpLoadCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectNotUpLoadCell.h; sourceTree = "<group>"; };
84D3E5F81C04BD8E001FF1DD /* InspectNotUpLoadCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectNotUpLoadCell.m; sourceTree = "<group>"; };
84D3E6001C04DA85001FF1DD /* InspectUpLoadFootView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectUpLoadFootView.h; sourceTree = "<group>"; };
84D3E6011C04DA85001FF1DD /* InspectUpLoadFootView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectUpLoadFootView.m; sourceTree = "<group>"; };
84D554EC1C0EDFB8006C9AD0 /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchViewController.h; sourceTree = "<group>"; };
84D554ED1C0EDFB8006C9AD0 /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchViewController.m; sourceTree = "<group>"; };
84D80EB11BF714BE00A10EA4 /* GroupItems.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupItems.h; sourceTree = "<group>"; };
84D80EB21BF714BE00A10EA4 /* GroupItems.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupItems.m; sourceTree = "<group>"; };
84D80EB31BF714BE00A10EA4 /* GroupTabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupTabBar.h; sourceTree = "<group>"; };
84D80EB41BF714BE00A10EA4 /* GroupTabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupTabBar.m; sourceTree = "<group>"; };
84D8257D1BDD2F7E00CC61F7 /* MineTableFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineTableFooterView.h; sourceTree = "<group>"; };
84D8257E1BDD2F7E00CC61F7 /* MineTableFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineTableFooterView.m; sourceTree = "<group>"; };
84D825801BDD35E000CC61F7 /* HomeHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHeaderView.h; sourceTree = "<group>"; };
84D825811BDD35E000CC61F7 /* HomeHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHeaderView.m; sourceTree = "<group>"; };
84D863681C1148EC00E4F4CC /* InpectPictureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InpectPictureCell.h; sourceTree = "<group>"; };
84D863691C1148EC00E4F4CC /* InpectPictureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InpectPictureCell.m; sourceTree = "<group>"; };
84D8636A1C1148EC00E4F4CC /* InspectAddCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectAddCell.h; sourceTree = "<group>"; };
84D8636B1C1148EC00E4F4CC /* InspectAddCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectAddCell.m; sourceTree = "<group>"; };
84D8636C1C1148EC00E4F4CC /* InspectPicAddCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectPicAddCell.h; sourceTree = "<group>"; };
84D8636D1C1148EC00E4F4CC /* InspectPicAddCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectPicAddCell.m; sourceTree = "<group>"; };
84D863711C11923F00E4F4CC /* AddQuestionTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddQuestionTableCell.h; sourceTree = "<group>"; };
84D863721C11923F00E4F4CC /* AddQuestionTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddQuestionTableCell.m; sourceTree = "<group>"; };
84D98D111C210F3300C7C96F /* RankScreenTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankScreenTableViewCell.h; sourceTree = "<group>"; };
84D98D121C210F3300C7C96F /* RankScreenTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankScreenTableViewCell.m; sourceTree = "<group>"; };
84DB9BC21BDCD4B600822CC4 /* CustomDropMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomDropMenuView.h; sourceTree = "<group>"; };
84DB9BC31BDCD4B600822CC4 /* CustomDropMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomDropMenuView.m; sourceTree = "<group>"; };
84DB9BC51BDCD67200822CC4 /* UIView+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Extension.h"; sourceTree = "<group>"; };
84DB9BC61BDCD67200822CC4 /* UIView+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+Extension.m"; path = "../../Other/Category/UIView+Extension.m"; sourceTree = "<group>"; };
84DC873C1C24E90E00811037 /* AddPicTextTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddPicTextTableViewCell.h; sourceTree = "<group>"; };
84DC873D1C24E90E00811037 /* AddPicTextTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddPicTextTableViewCell.m; sourceTree = "<group>"; };
84DC873F1C24F33900811037 /* AddButtonTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddButtonTableViewCell.h; sourceTree = "<group>"; };
84DC87401C24F33900811037 /* AddButtonTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddButtonTableViewCell.m; sourceTree = "<group>"; };
84E0ABCB1BFB082E001C8F45 /* TaskDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskDetailModel.h; sourceTree = "<group>"; };
84E0ABCC1BFB082E001C8F45 /* TaskDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaskDetailModel.m; sourceTree = "<group>"; };
84E363D01BFAC5200061547E /* TaskListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskListModel.h; sourceTree = "<group>"; };
84E363D11BFAC5200061547E /* TaskListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaskListModel.m; sourceTree = "<group>"; };
84E4203F1BE849FC00689976 /* QuestionDescribeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDescribeCell.h; sourceTree = "<group>"; };
84E420401BE849FC00689976 /* QuestionDescribeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDescribeCell.m; sourceTree = "<group>"; };
84E420421BE84A2300689976 /* QuestionCommentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionCommentCell.h; sourceTree = "<group>"; };
84E420431BE84A2300689976 /* QuestionCommentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionCommentCell.m; sourceTree = "<group>"; };
84E420451BE88AE000689976 /* RootTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootTabBarController.h; sourceTree = "<group>"; };
84E420461BE88AE000689976 /* RootTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RootTabBarController.m; sourceTree = "<group>"; };
84E7BD7E1C16809E0030C441 /* LookOnLineFootView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookOnLineFootView.h; sourceTree = "<group>"; };
84E7BD7F1C16809E0030C441 /* LookOnLineFootView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LookOnLineFootView.m; sourceTree = "<group>"; };
84ECCF161C01FA2600EA4960 /* QuestionDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDetailModel.h; sourceTree = "<group>"; };
84ECCF171C01FA2600EA4960 /* QuestionDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDetailModel.m; sourceTree = "<group>"; };
84ECCF191C0210F000EA4960 /* CommentModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentModel.h; sourceTree = "<group>"; };
84ECCF1A1C0210F000EA4960 /* CommentModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentModel.m; sourceTree = "<group>"; };
84ED5DD61BF2E64300A1BB6D /* ScreenView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreenView.h; sourceTree = "<group>"; };
84ED5DD71BF2E64300A1BB6D /* ScreenView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreenView.m; sourceTree = "<group>"; };
84EE92751C2FFDEB000EF5BF /* AttachmentModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AttachmentModel.h; sourceTree = "<group>"; };
84EE92761C2FFDEB000EF5BF /* AttachmentModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AttachmentModel.m; sourceTree = "<group>"; };
84F166991BE715E40061D350 /* ZanButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZanButton.h; sourceTree = "<group>"; };
84F1669A1BE715E40061D350 /* ZanButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZanButton.m; sourceTree = "<group>"; };
84F30DA21BFC19F200CBAD13 /* RankListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankListModel.h; sourceTree = "<group>"; };
84F30DA31BFC19F200CBAD13 /* RankListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankListModel.m; sourceTree = "<group>"; };
84F57C441BEC388A00DDEEB1 /* CommentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentView.h; sourceTree = "<group>"; };
84F57C451BEC388A00DDEEB1 /* CommentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentView.m; sourceTree = "<group>"; };
84F57C4A1BEC785E00DDEEB1 /* AddQuestionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddQuestionViewController.h; sourceTree = "<group>"; };
84F57C4B1BEC785E00DDEEB1 /* AddQuestionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddQuestionViewController.m; sourceTree = "<group>"; };
84F57C4E1BEC7AA300DDEEB1 /* AddQuestionFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddQuestionFooterView.h; sourceTree = "<group>"; };
84F57C4F1BEC7AA300DDEEB1 /* AddQuestionFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddQuestionFooterView.m; sourceTree = "<group>"; };
84F57C9A1BECA73800DDEEB1 /* StarBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StarBar.h; sourceTree = "<group>"; };
84F57C9B1BECA73800DDEEB1 /* StarBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StarBar.m; sourceTree = "<group>"; };
84FAC75F1BFF2C6E00FD094D /* NoDataView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoDataView.h; sourceTree = "<group>"; };
84FAC7601BFF2C6E00FD094D /* NoDataView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoDataView.m; sourceTree = "<group>"; };
84FD89F01BD9FC71006E442A /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
84FD89F11BD9FC71006E442A /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
84FD8A081BDA01D1006E442A /* MineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineViewController.h; sourceTree = "<group>"; };
84FD8A091BDA01D1006E442A /* MineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineViewController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
84970DE71BD8DD8A00C1728A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2381E9EBA834CB171E43657A /* libPods.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84970E001BD8DD8A00C1728A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
84970E0B1BD8DD8A00C1728A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
3804675908937B1280E059D9 /* Pods */ = {
isa = PBXGroup;
children = (
6C6D8B0ECF8531E34D0DFF6B /* Pods.debug.xcconfig */,
13B0DDED3E0E584D79B395CF /* Pods.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
};
8409BDE51C281ACD00354460 /* SelectStore */ = {
isa = PBXGroup;
children = (
8409BDE61C281ACD00354460 /* Cell */,
8409BDED1C281ACD00354460 /* Model */,
8409BDF01C281ACD00354460 /* View */,
8409BDF51C281ACD00354460 /* ViewController */,
);
path = SelectStore;
sourceTree = "<group>";
};
8409BDE61C281ACD00354460 /* Cell */ = {
isa = PBXGroup;
children = (
8409BDE71C281ACD00354460 /* CheckBoxButton.h */,
8409BDE81C281ACD00354460 /* CheckBoxButton.m */,
8409BDE91C281ACD00354460 /* SelectYetTableViewCell.h */,
8409BDEA1C281ACD00354460 /* SelectYetTableViewCell.m */,
8409BDEB1C281ACD00354460 /* TreeNodeCell.h */,
8409BDEC1C281ACD00354460 /* TreeNodeCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
8409BDED1C281ACD00354460 /* Model */ = {
isa = PBXGroup;
children = (
8409BDEE1C281ACD00354460 /* TreeNodeModel.h */,
8409BDEF1C281ACD00354460 /* TreeNodeModel.m */,
);
path = Model;
sourceTree = "<group>";
};
8409BDF01C281ACD00354460 /* View */ = {
isa = PBXGroup;
children = (
8409BDF11C281ACD00354460 /* SelectStoreHeadView.h */,
8409BDF21C281ACD00354460 /* SelectStoreHeadView.m */,
8409BDF31C281ACD00354460 /* TreeView.h */,
8409BDF41C281ACD00354460 /* TreeView.m */,
);
path = View;
sourceTree = "<group>";
};
8409BDF51C281ACD00354460 /* ViewController */ = {
isa = PBXGroup;
children = (
8409BDF61C281ACD00354460 /* SelectStoreViewController.h */,
8409BDF71C281ACD00354460 /* SelectStoreViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
8419EABB1BEDA8F9002635ED /* Menu */ = {
isa = PBXGroup;
children = (
8462C6EA1BF5F3BE00344DDD /* MenuButton.h */,
8462C6EB1BF5F3BE00344DDD /* MenuButton.m */,
8487D80A1BF218F900E63E90 /* MenuView.h */,
8487D80B1BF218F900E63E90 /* MenuView.m */,
8419EAC81BEDABF0002635ED /* Screen */,
8419EACB1BEDABF0002635ED /* Taxis */,
);
path = Menu;
sourceTree = "<group>";
};
8419EAC81BEDABF0002635ED /* Screen */ = {
isa = PBXGroup;
children = (
8419EAC91BEDABF0002635ED /* View */,
);
path = Screen;
sourceTree = "<group>";
};
8419EAC91BEDABF0002635ED /* View */ = {
isa = PBXGroup;
children = (
84D80EB11BF714BE00A10EA4 /* GroupItems.h */,
84D80EB21BF714BE00A10EA4 /* GroupItems.m */,
84D80EB31BF714BE00A10EA4 /* GroupTabBar.h */,
84D80EB41BF714BE00A10EA4 /* GroupTabBar.m */,
84ED5DD61BF2E64300A1BB6D /* ScreenView.h */,
84ED5DD71BF2E64300A1BB6D /* ScreenView.m */,
);
path = View;
sourceTree = "<group>";
};
8419EACB1BEDABF0002635ED /* Taxis */ = {
isa = PBXGroup;
children = (
8419EACC1BEDABF0002635ED /* View */,
);
path = Taxis;
sourceTree = "<group>";
};
8419EACC1BEDABF0002635ED /* View */ = {
isa = PBXGroup;
children = (
8487D8071BF20FAD00E63E90 /* TaxisView.h */,
8487D8081BF20FAD00E63E90 /* TaxisView.m */,
);
path = View;
sourceTree = "<group>";
};
8419EAD11BEDC976002635ED /* HttpClient */ = {
isa = PBXGroup;
children = (
8419EAD21BEDC98F002635ED /* HttpClient.h */,
8419EAD31BEDC98F002635ED /* HttpClient.m */,
);
path = HttpClient;
sourceTree = "<group>";
};
841D24F51BEB473B0005CC9F /* Check */ = {
isa = PBXGroup;
children = (
841D24F61BEB473C0005CC9F /* CheckPicViewController.h */,
841D24F71BEB473C0005CC9F /* CheckPicViewController.m */,
);
path = Check;
sourceTree = "<group>";
};
842547F91BF03962006C79C5 /* Model */ = {
isa = PBXGroup;
children = (
842547FA1BF03977006C79C5 /* QuestionModel.h */,
842547FB1BF03977006C79C5 /* QuestionModel.m */,
);
path = Model;
sourceTree = "<group>";
};
8426A4A01BDF0CD600E5FDF5 /* Function */ = {
isa = PBXGroup;
children = (
84FAC75E1BFF2C5B00FD094D /* NoData */,
8426A4A11BDF0CD600E5FDF5 /* Case */,
8426A4A41BDF0CD600E5FDF5 /* OnLine */,
8426A4A71BDF0CD600E5FDF5 /* Picture */,
8426A4AA1BDF0CD600E5FDF5 /* Question */,
8426A4AD1BDF0CD600E5FDF5 /* Standard */,
8426A4B01BDF0CD600E5FDF5 /* WordOfMouth */,
84A6738F1C0C2681000F828E /* FunctionViewController.h */,
84A673901C0C2681000F828E /* FunctionViewController.m */,
);
path = Function;
sourceTree = "<group>";
};
8426A4A11BDF0CD600E5FDF5 /* Case */ = {
isa = PBXGroup;
children = (
8426A4A21BDF0CD600E5FDF5 /* View */,
8426A4A31BDF0CD600E5FDF5 /* ViewController */,
);
path = Case;
sourceTree = "<group>";
};
8426A4A21BDF0CD600E5FDF5 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
8426A4A31BDF0CD600E5FDF5 /* ViewController */ = {
isa = PBXGroup;
children = (
);
path = ViewController;
sourceTree = "<group>";
};
8426A4A41BDF0CD600E5FDF5 /* OnLine */ = {
isa = PBXGroup;
children = (
8409BDE51C281ACD00354460 /* SelectStore */,
848A201E1C183F1800422FAB /* LookOnLineResult */,
84A673821C0B4D3B000F828E /* OnLineTaskComplete */,
843D1B991C0B3F6200E30002 /* SpotCheckOnLine */,
84CC34E31C09AD58002F10E2 /* LookOnLineDetail */,
84CC34BE1C093C2F002F10E2 /* AddOnLine */,
84CC34C81C093C2F002F10E2 /* LookOnLine */,
);
path = OnLine;
sourceTree = "<group>";
};
8426A4A71BDF0CD600E5FDF5 /* Picture */ = {
isa = PBXGroup;
children = (
84B476531C2E4B1C006C6488 /* PictureCategory */,
849A183D1C152CD400071600 /* AddPicture */,
8490C4C71BF9DEF0006B6569 /* PictureDetail */,
8490C4CB1BF9DEF0006B6569 /* PictureList */,
);
path = Picture;
sourceTree = "<group>";
};
8426A4AA1BDF0CD600E5FDF5 /* Question */ = {
isa = PBXGroup;
children = (
84F57C471BEC782D00DDEEB1 /* AddQuestion */,
8474C5861BE78A85007DCF19 /* QuestionDetail */,
8474C5891BE78A85007DCF19 /* QuestionList */,
);
path = Question;
sourceTree = "<group>";
};
8426A4AD1BDF0CD600E5FDF5 /* Standard */ = {
isa = PBXGroup;
children = (
84D2F5111C2CD3C300651EFB /* SOPCategarys */,
84CC34D91C09538E002F10E2 /* StandardHandout */,
84CC34D51C094557002F10E2 /* Cell */,
8426A4AE1BDF0CD600E5FDF5 /* View */,
8426A4AF1BDF0CD600E5FDF5 /* ViewController */,
);
name = Standard;
path = Standar;
sourceTree = "<group>";
};
8426A4AE1BDF0CD600E5FDF5 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
8426A4AF1BDF0CD600E5FDF5 /* ViewController */ = {
isa = PBXGroup;
children = (
84CC34D21C094476002F10E2 /* StandardViewController.h */,
84CC34D31C094476002F10E2 /* StandardViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
8426A4B01BDF0CD600E5FDF5 /* WordOfMouth */ = {
isa = PBXGroup;
children = (
8486999B1BDF810900859DFE /* Inspect */,
848699A91BDF810900859DFE /* Ranking */,
);
path = WordOfMouth;
sourceTree = "<group>";
};
843D1B991C0B3F6200E30002 /* SpotCheckOnLine */ = {
isa = PBXGroup;
children = (
8491F6C31C2BCD7300A00395 /* Cell */,
84CEB1641C28E7E40072ED0A /* Model */,
843D1B9A1C0B3F6200E30002 /* View */,
843D1B9B1C0B3F6200E30002 /* ViewController */,
);
path = SpotCheckOnLine;
sourceTree = "<group>";
};
843D1B9A1C0B3F6200E30002 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
843D1B9B1C0B3F6200E30002 /* ViewController */ = {
isa = PBXGroup;
children = (
843D1B9C1C0B3F7600E30002 /* SpotCheckOnLineViewController.h */,
843D1B9D1C0B3F7600E30002 /* SpotCheckOnLineViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
846206B21C06AF700015C456 /* View */ = {
isa = PBXGroup;
children = (
846206B31C06AF700015C456 /* RankListHeaderView.h */,
846206B41C06AF700015C456 /* RankListHeaderView.m */,
84A2270C1C229409002766DC /* RankPickView.h */,
84A2270D1C229409002766DC /* RankPickView.m */,
);
path = View;
sourceTree = "<group>";
};
846ABDF21C1E5E660020C331 /* Model */ = {
isa = PBXGroup;
children = (
846ABDF31C1E5E780020C331 /* PictureListModel.h */,
846ABDF41C1E5E780020C331 /* PictureListModel.m */,
);
path = Model;
sourceTree = "<group>";
};
846ABDF61C1E74360020C331 /* Model */ = {
isa = PBXGroup;
children = (
846ABDF71C1E74430020C331 /* PictureDetailModel.h */,
846ABDF81C1E74430020C331 /* PictureDetailModel.m */,
846ABDFA1C1EAB160020C331 /* PicTextModel.h */,
846ABDFB1C1EAB160020C331 /* PicTextModel.m */,
);
path = Model;
sourceTree = "<group>";
};
8474C5801BE751A2007DCF19 /* CommonFunc */ = {
isa = PBXGroup;
children = (
8474C5811BE751A2007DCF19 /* CommonFunc.h */,
8474C5821BE751A2007DCF19 /* CommonFunc.m */,
);
path = CommonFunc;
sourceTree = "<group>";
};
8474C5861BE78A85007DCF19 /* QuestionDetail */ = {
isa = PBXGroup;
children = (
84ECCF151C01FA0E00EA4960 /* Model */,
8474C5961BE78BA3007DCF19 /* Cell */,
8474C5871BE78A85007DCF19 /* View */,
8474C5881BE78A85007DCF19 /* ViewController */,
);
path = QuestionDetail;
sourceTree = "<group>";
};
8474C5871BE78A85007DCF19 /* View */ = {
isa = PBXGroup;
children = (
841D24F91BEB75CA0005CC9F /* QuestionDetailFooterView.h */,
841D24FA1BEB75CA0005CC9F /* QuestionDetailFooterView.m */,
);
path = View;
sourceTree = "<group>";
};
8474C5881BE78A85007DCF19 /* ViewController */ = {
isa = PBXGroup;
children = (
8474C5931BE78AE1007DCF19 /* QuestionDetailViewController.h */,
8474C5941BE78AE1007DCF19 /* QuestionDetailViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
8474C5891BE78A85007DCF19 /* QuestionList */ = {
isa = PBXGroup;
children = (
842547F91BF03962006C79C5 /* Model */,
8474C58A1BE78A85007DCF19 /* Cell */,
8474C58D1BE78A85007DCF19 /* View */,
8474C58E1BE78A85007DCF19 /* ViewController */,
);
path = QuestionList;
sourceTree = "<group>";
};
8474C58A1BE78A85007DCF19 /* Cell */ = {
isa = PBXGroup;
children = (
8474C58B1BE78A85007DCF19 /* QuestionListTableCell.h */,
8474C58C1BE78A85007DCF19 /* QuestionListTableCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
8474C58D1BE78A85007DCF19 /* View */ = {
isa = PBXGroup;
children = (
8480BEA31C14377200E2F18F /* SubViews */,
8487D7701BF19A9C00E63E90 /* SearchToolBar.h */,
8487D7711BF19A9C00E63E90 /* SearchToolBar.m */,
8480BEA01C14326100E2F18F /* MoreScreenView.h */,
8480BEA11C14326100E2F18F /* MoreScreenView.m */,
);
path = View;
sourceTree = "<group>";
};
8474C58E1BE78A85007DCF19 /* ViewController */ = {
isa = PBXGroup;
children = (
8474C58F1BE78A85007DCF19 /* QuestionViewController.h */,
8474C5901BE78A85007DCF19 /* QuestionViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
8474C5961BE78BA3007DCF19 /* Cell */ = {
isa = PBXGroup;
children = (
8474C5971BE78BBC007DCF19 /* QuestionDetailCell.h */,
8474C5981BE78BBC007DCF19 /* QuestionDetailCell.m */,
84E4203F1BE849FC00689976 /* QuestionDescribeCell.h */,
84E420401BE849FC00689976 /* QuestionDescribeCell.m */,
84E420421BE84A2300689976 /* QuestionCommentCell.h */,
84E420431BE84A2300689976 /* QuestionCommentCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
8480BEA31C14377200E2F18F /* SubViews */ = {
isa = PBXGroup;
children = (
8480BEA41C14378C00E2F18F /* ScopeTableView.h */,
8480BEA51C14378C00E2F18F /* ScopeTableView.m */,
8480BEA71C143A0800E2F18F /* GroupTableView.h */,
8480BEA81C143A0800E2F18F /* GroupTableView.m */,
8480BEAA1C143A1600E2F18F /* CategoryTableView.h */,
8480BEAB1C143A1600E2F18F /* CategoryTableView.m */,
8480BEB01C143A4100E2F18F /* StateTableView.h */,
8480BEB11C143A4100E2F18F /* StateTableView.m */,
8480BEAD1C143A2200E2F18F /* TimeTableView.h */,
8480BEAE1C143A2200E2F18F /* TimeTableView.m */,
);
path = SubViews;
sourceTree = "<group>";
};
8486999B1BDF810900859DFE /* Inspect */ = {
isa = PBXGroup;
children = (
84CF0ECA1BE9A7EF00C855CE /* InspectDetail */,
8486999C1BDF810900859DFE /* InspectList */,
848699A51BDF810900859DFE /* InspectTask */,
);
path = Inspect;
sourceTree = "<group>";
};
8486999C1BDF810900859DFE /* InspectList */ = {
isa = PBXGroup;
children = (
8497B6281C043656007ECBE6 /* View */,
84E363CC1BFAC3600061547E /* Model */,
8486999D1BDF810900859DFE /* Cell */,
848699A21BDF810900859DFE /* ViewController */,
);
path = InspectList;
sourceTree = "<group>";
};
8486999D1BDF810900859DFE /* Cell */ = {
isa = PBXGroup;
children = (
8486999E1BDF810900859DFE /* InspectListCell.h */,
8486999F1BDF810900859DFE /* InspectListCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
848699A21BDF810900859DFE /* ViewController */ = {
isa = PBXGroup;
children = (
848699A31BDF810900859DFE /* InspectListViewController.h */,
848699A41BDF810900859DFE /* InspectListViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
848699A51BDF810900859DFE /* InspectTask */ = {
isa = PBXGroup;
children = (
84AD4F331BF448D800BFB37C /* Cell */,
84AD4F231BF4355700BFB37C /* Model */,
84AD4F1D1BF4257C00BFB37C /* View */,
848699A61BDF810900859DFE /* ViewController */,
);
path = InspectTask;
sourceTree = "<group>";
};
848699A61BDF810900859DFE /* ViewController */ = {
isa = PBXGroup;
children = (
848699A71BDF810900859DFE /* InspectTaskViewController.h */,
848699A81BDF810900859DFE /* InspectTaskViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
848699A91BDF810900859DFE /* Ranking */ = {
isa = PBXGroup;
children = (
848699AA1BDF810900859DFE /* RankDetail */,
848699AD1BDF810900859DFE /* RankingList */,
);
path = Ranking;
sourceTree = "<group>";
};
848699AA1BDF810900859DFE /* RankDetail */ = {
isa = PBXGroup;
children = (
84D2F52A1C2D739700651EFB /* Cell */,
84D2F5311C2D739700651EFB /* ViewController */,
84AD4F401BF49FC100BFB37C /* Model */,
84AD4F371BF4842C00BFB37C /* View */,
);
path = RankDetail;
sourceTree = "<group>";
};
848699AD1BDF810900859DFE /* RankingList */ = {
isa = PBXGroup;
children = (
846206B21C06AF700015C456 /* View */,
84F30DA11BFC19DF00CBAD13 /* Model */,
848699AE1BDF810900859DFE /* Cell */,
848699AF1BDF810900859DFE /* ViewController */,
);
path = RankingList;
sourceTree = "<group>";
};
848699AE1BDF810900859DFE /* Cell */ = {
isa = PBXGroup;
children = (
84846E951BE069BC0010550A /* DateButton.h */,
84846E961BE069BC0010550A /* DateButton.m */,
84846E981BE07CDF0010550A /* RankingListCell.h */,
84846E991BE07CDF0010550A /* RankingListCell.m */,
846206B91C06AFF50015C456 /* RankCommentCell.h */,
846206BA1C06AFF50015C456 /* RankCommentCell.m */,
84D98D111C210F3300C7C96F /* RankScreenTableViewCell.h */,
84D98D121C210F3300C7C96F /* RankScreenTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
848699AF1BDF810900859DFE /* ViewController */ = {
isa = PBXGroup;
children = (
848699B41BDF812F00859DFE /* RankingListViewController.h */,
848699B51BDF812F00859DFE /* RankingListViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
848A201E1C183F1800422FAB /* LookOnLineResult */ = {
isa = PBXGroup;
children = (
848A201F1C183F1800422FAB /* Cell */,
848A20201C183F1800422FAB /* View */,
848A20211C183F1800422FAB /* ViewController */,
);
path = LookOnLineResult;
sourceTree = "<group>";
};
848A201F1C183F1800422FAB /* Cell */ = {
isa = PBXGroup;
children = (
848A202B1C184DC600422FAB /* OnLineResultDetailCell.h */,
848A202C1C184DC600422FAB /* OnLineResultDetailCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
848A20201C183F1800422FAB /* View */ = {
isa = PBXGroup;
children = (
84BB16A01C191A7F00383A64 /* OnLineResultFootView.h */,
84BB16A11C191A7F00383A64 /* OnLineResultFootView.m */,
);
path = View;
sourceTree = "<group>";
};
848A20211C183F1800422FAB /* ViewController */ = {
isa = PBXGroup;
children = (
848A20251C183FCA00422FAB /* OnLineResultViewController.h */,
848A20261C183FCA00422FAB /* OnLineResultViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
8490C4C01BF9A394006B6569 /* PageControl */ = {
isa = PBXGroup;
children = (
8490C4C11BF9A394006B6569 /* CustomPageControl.h */,
8490C4C21BF9A394006B6569 /* CustomPageControl.m */,
);
path = PageControl;
sourceTree = "<group>";
};
8490C4C71BF9DEF0006B6569 /* PictureDetail */ = {
isa = PBXGroup;
children = (
846ABDF61C1E74360020C331 /* Model */,
8490C4C81BF9DEF0006B6569 /* Cell */,
8490C4C91BF9DEF0006B6569 /* View */,
8490C4CA1BF9DEF0006B6569 /* ViewController */,
);
path = PictureDetail;
sourceTree = "<group>";
};
8490C4C81BF9DEF0006B6569 /* Cell */ = {
isa = PBXGroup;
children = (
84C972971C1ADB9C003A3276 /* PictureDetailTableCell.h */,
84C972981C1ADB9C003A3276 /* PictureDetailTableCell.m */,
84C9729A1C1ADC5B003A3276 /* PictureTextTableCell.h */,
84C9729B1C1ADC5B003A3276 /* PictureTextTableCell.m */,
84C9729D1C1ADD17003A3276 /* PictureCommentTableCell.h */,
84C9729E1C1ADD17003A3276 /* PictureCommentTableCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
8490C4C91BF9DEF0006B6569 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
8490C4CA1BF9DEF0006B6569 /* ViewController */ = {
isa = PBXGroup;
children = (
8490C4D51BF9DF1D006B6569 /* PictureStoryViewController.h */,
8490C4D61BF9DF1D006B6569 /* PictureStoryViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
8490C4CB1BF9DEF0006B6569 /* PictureList */ = {
isa = PBXGroup;
children = (
846ABDF21C1E5E660020C331 /* Model */,
8490C4CC1BF9DEF0006B6569 /* Cell */,
8490C4CF1BF9DEF0006B6569 /* View */,
8490C4D01BF9DEF0006B6569 /* ViewController */,
);
path = PictureList;
sourceTree = "<group>";
};
8490C4CC1BF9DEF0006B6569 /* Cell */ = {
isa = PBXGroup;
children = (
8490C4CD1BF9DEF0006B6569 /* PictureTableCell.h */,
8490C4CE1BF9DEF0006B6569 /* PictureTableCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
8490C4CF1BF9DEF0006B6569 /* View */ = {
isa = PBXGroup;
children = (
84C972941C1ABE08003A3276 /* PicScreenView.h */,
84C972951C1ABE08003A3276 /* PicScreenView.m */,
);
path = View;
sourceTree = "<group>";
};
8490C4D01BF9DEF0006B6569 /* ViewController */ = {
isa = PBXGroup;
children = (
8490C4D11BF9DEF0006B6569 /* PictureViewController.h */,
8490C4D21BF9DEF0006B6569 /* PictureViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
8491F6C31C2BCD7300A00395 /* Cell */ = {
isa = PBXGroup;
children = (
8491F6C41C2BCD8D00A00395 /* SpotCheckTableViewCell.h */,
8491F6C51C2BCD8D00A00395 /* SpotCheckTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84945F181C2A6A4A00C1793C /* About */ = {
isa = PBXGroup;
children = (
84945F191C2A6A6300C1793C /* AboutMeViewController.h */,
84945F1A1C2A6A6300C1793C /* AboutMeViewController.m */,
);
path = About;
sourceTree = "<group>";
};
84970DE11BD8DD8A00C1728A = {
isa = PBXGroup;
children = (
84970DEC1BD8DD8A00C1728A /* redstar */,
84970E061BD8DD8A00C1728A /* redstarTests */,
84970E111BD8DD8A00C1728A /* redstarUITests */,
84970DEB1BD8DD8A00C1728A /* Products */,
3804675908937B1280E059D9 /* Pods */,
DA794C35494A6C844D6EE3C9 /* Frameworks */,
);
sourceTree = "<group>";
};
84970DEB1BD8DD8A00C1728A /* Products */ = {
isa = PBXGroup;
children = (
84970DEA1BD8DD8A00C1728A /* redstar.app */,
84970E031BD8DD8A00C1728A /* redstarTests.xctest */,
84970E0E1BD8DD8A00C1728A /* redstarUITests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
84970DEC1BD8DD8A00C1728A /* redstar */ = {
isa = PBXGroup;
children = (
84970E201BD8DEFE00C1728A /* Classes */,
84970DF91BD8DD8A00C1728A /* Assets.xcassets */,
84970DFB1BD8DD8A00C1728A /* LaunchScreen.storyboard */,
84970DFE1BD8DD8A00C1728A /* Info.plist */,
84AD4F3E1BF498A900BFB37C /* ranking.plist */,
84AD4F211BF42F8E00BFB37C /* classfiy.plist */,
84970DED1BD8DD8A00C1728A /* Supporting Files */,
);
path = redstar;
sourceTree = "<group>";
};
84970DED1BD8DD8A00C1728A /* Supporting Files */ = {
isa = PBXGroup;
children = (
84970DEE1BD8DD8A00C1728A /* main.m */,
84C9574F1BDB38AA00083584 /* redstar.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
84970E061BD8DD8A00C1728A /* redstarTests */ = {
isa = PBXGroup;
children = (
84970E071BD8DD8A00C1728A /* redstarTests.m */,
84970E091BD8DD8A00C1728A /* Info.plist */,
);
path = redstarTests;
sourceTree = "<group>";
};
84970E111BD8DD8A00C1728A /* redstarUITests */ = {
isa = PBXGroup;
children = (
84970E121BD8DD8A00C1728A /* redstarUITests.m */,
84970E141BD8DD8A00C1728A /* Info.plist */,
);
path = redstarUITests;
sourceTree = "<group>";
};
84970E201BD8DEFE00C1728A /* Classes */ = {
isa = PBXGroup;
children = (
84970E211BD8DEFE00C1728A /* AppDelegate */,
84970E241BD8DEFE00C1728A /* Module */,
84970E3E1BD9124D00C1728A /* Macro */,
84970E251BD8DEFE00C1728A /* Resource */,
84970E261BD8DEFE00C1728A /* Tools */,
84970E271BD8DEFE00C1728A /* Vendors */,
84C957471BDB344900083584 /* Other */,
);
path = Classes;
sourceTree = "<group>";
};
84970E211BD8DEFE00C1728A /* AppDelegate */ = {
isa = PBXGroup;
children = (
84970E221BD8DEFE00C1728A /* AppDelegate.h */,
84970E231BD8DEFE00C1728A /* AppDelegate.m */,
84E420451BE88AE000689976 /* RootTabBarController.h */,
84E420461BE88AE000689976 /* RootTabBarController.m */,
);
path = AppDelegate;
sourceTree = "<group>";
};
84970E241BD8DEFE00C1728A /* Module */ = {
isa = PBXGroup;
children = (
84F57C421BEC388A00DDEEB1 /* Comment */,
841D24F51BEB473B0005CC9F /* Check */,
8426A4A01BDF0CD600E5FDF5 /* Function */,
84C957501BDB54BB00083584 /* Announce */,
84FD89F81BDA0136006E442A /* Mine */,
84FD89ED1BD9FC5B006E442A /* Home */,
84970E2E1BD8E04000C1728A /* Login */,
);
path = Module;
sourceTree = "<group>";
};
84970E251BD8DEFE00C1728A /* Resource */ = {
isa = PBXGroup;
children = (
);
path = Resource;
sourceTree = "<group>";
};
84970E261BD8DEFE00C1728A /* Tools */ = {
isa = PBXGroup;
children = (
8490C4C01BF9A394006B6569 /* PageControl */,
8419EAD11BEDC976002635ED /* HttpClient */,
8419EABB1BEDA8F9002635ED /* Menu */,
84F57C991BECA72C00DDEEB1 /* StarBar */,
8474C5801BE751A2007DCF19 /* CommonFunc */,
84F166981BE715D20061D350 /* ZanButton */,
84DB9BC11BDCD49900822CC4 /* CustomDropMenu */,
);
path = Tools;
sourceTree = "<group>";
};
84970E271BD8DEFE00C1728A /* Vendors */ = {
isa = PBXGroup;
children = (
);
path = Vendors;
sourceTree = "<group>";
};
84970E2E1BD8E04000C1728A /* Login */ = {
isa = PBXGroup;
children = (
84970E321BD8E09D00C1728A /* View */,
84970E331BD8E09D00C1728A /* ViewController */,
);
path = Login;
sourceTree = "<group>";
};
84970E321BD8E09D00C1728A /* View */ = {
isa = PBXGroup;
children = (
84970E371BD8E0B300C1728A /* LoginView.h */,
84970E381BD8E0B300C1728A /* LoginView.m */,
);
path = View;
sourceTree = "<group>";
};
84970E331BD8E09D00C1728A /* ViewController */ = {
isa = PBXGroup;
children = (
84970E341BD8E09D00C1728A /* LoginViewController.h */,
84970E351BD8E09D00C1728A /* LoginViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84970E3E1BD9124D00C1728A /* Macro */ = {
isa = PBXGroup;
children = (
84970E3F1BD9127A00C1728A /* Constant.h */,
8474C5851BE77311007DCF19 /* Url.h */,
);
path = Macro;
sourceTree = "<group>";
};
8497B6281C043656007ECBE6 /* View */ = {
isa = PBXGroup;
children = (
8497B6291C043671007ECBE6 /* InspectTableView.h */,
8497B62A1C043671007ECBE6 /* InspectTableView.m */,
);
path = View;
sourceTree = "<group>";
};
849A183D1C152CD400071600 /* AddPicture */ = {
isa = PBXGroup;
children = (
849A183E1C152CD400071600 /* Cell */,
849A183F1C152CD400071600 /* View */,
849A18401C152CD400071600 /* ViewController */,
);
path = AddPicture;
sourceTree = "<group>";
};
849A183E1C152CD400071600 /* Cell */ = {
isa = PBXGroup;
children = (
849A18441C152EBA00071600 /* AddPictureTableCell.h */,
849A18451C152EBA00071600 /* AddPictureTableCell.m */,
84DC873C1C24E90E00811037 /* AddPicTextTableViewCell.h */,
84DC873D1C24E90E00811037 /* AddPicTextTableViewCell.m */,
84DC873F1C24F33900811037 /* AddButtonTableViewCell.h */,
84DC87401C24F33900811037 /* AddButtonTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
849A183F1C152CD400071600 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
849A18401C152CD400071600 /* ViewController */ = {
isa = PBXGroup;
children = (
849A18411C152CEE00071600 /* AddPictureViewController.h */,
849A18421C152CEE00071600 /* AddPictureViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84A673821C0B4D3B000F828E /* OnLineTaskComplete */ = {
isa = PBXGroup;
children = (
84CEB16C1C2946590072ED0A /* Model */,
84A673831C0B4D3B000F828E /* Cell */,
84A673841C0B4D3B000F828E /* View */,
84A673851C0B4D3B000F828E /* ViewController */,
);
path = OnLineTaskComplete;
sourceTree = "<group>";
};
84A673831C0B4D3B000F828E /* Cell */ = {
isa = PBXGroup;
children = (
84A6738C1C0BE2D0000F828E /* OnLineCompleteCell.h */,
84A6738D1C0BE2D0000F828E /* OnLineCompleteCell.m */,
848A201B1C180C1900422FAB /* OnLineCompleteDetailCell.h */,
848A201C1C180C1900422FAB /* OnLineCompleteDetailCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84A673841C0B4D3B000F828E /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
84A673851C0B4D3B000F828E /* ViewController */ = {
isa = PBXGroup;
children = (
84A673861C0B50B4000F828E /* OnLineCompleteViewController.h */,
84A673871C0B50B4000F828E /* OnLineCompleteViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84A673AC1C0C7AEB000F828E /* AnnounceDetail */ = {
isa = PBXGroup;
children = (
84A673AD1C0C7AEB000F828E /* Cell */,
84A673AE1C0C7AEB000F828E /* Model */,
84A673AF1C0C7AEB000F828E /* View */,
84A673B01C0C7AEB000F828E /* ViewController */,
);
path = AnnounceDetail;
sourceTree = "<group>";
};
84A673AD1C0C7AEB000F828E /* Cell */ = {
isa = PBXGroup;
children = (
849B2F6F1C0CA22F005D809F /* AnnoContentTableViewCell.h */,
849B2F701C0CA22F005D809F /* AnnoContentTableViewCell.m */,
84D2F51E1C2D213400651EFB /* AttachmentTableViewCell.h */,
84D2F51F1C2D213400651EFB /* AttachmentTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84A673AE1C0C7AEB000F828E /* Model */ = {
isa = PBXGroup;
children = (
849B2F751C0CABE6005D809F /* AnnounceDetailModel.h */,
849B2F761C0CABE6005D809F /* AnnounceDetailModel.m */,
84EE92751C2FFDEB000EF5BF /* AttachmentModel.h */,
84EE92761C2FFDEB000EF5BF /* AttachmentModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84A673AF1C0C7AEB000F828E /* View */ = {
isa = PBXGroup;
children = (
84A673C51C0C7E0C000F828E /* AnnounceDetailHeadView.h */,
84A673C61C0C7E0C000F828E /* AnnounceDetailHeadView.m */,
849B2F721C0CA60E005D809F /* AnnounceDetailFootView.h */,
849B2F731C0CA60E005D809F /* AnnounceDetailFootView.m */,
);
path = View;
sourceTree = "<group>";
};
84A673B01C0C7AEB000F828E /* ViewController */ = {
isa = PBXGroup;
children = (
84A673C21C0C7B0A000F828E /* AnnoDetailViewController.h */,
84A673C31C0C7B0A000F828E /* AnnoDetailViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84A673B11C0C7AEB000F828E /* AnnounceList */ = {
isa = PBXGroup;
children = (
84A673B21C0C7AEB000F828E /* Cell */,
84A673B51C0C7AEB000F828E /* Model */,
84A673B81C0C7AEB000F828E /* View */,
84A673BB1C0C7AEB000F828E /* ViewController */,
);
path = AnnounceList;
sourceTree = "<group>";
};
84A673B21C0C7AEB000F828E /* Cell */ = {
isa = PBXGroup;
children = (
84A673B31C0C7AEB000F828E /* AnnoTableViewCell.h */,
84A673B41C0C7AEB000F828E /* AnnoTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84A673B51C0C7AEB000F828E /* Model */ = {
isa = PBXGroup;
children = (
84A673B61C0C7AEB000F828E /* AnnounceModel.h */,
84A673B71C0C7AEB000F828E /* AnnounceModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84A673B81C0C7AEB000F828E /* View */ = {
isa = PBXGroup;
children = (
84A673B91C0C7AEB000F828E /* FuncItem.h */,
84A673BA1C0C7AEB000F828E /* FuncItem.m */,
);
path = View;
sourceTree = "<group>";
};
84A673BB1C0C7AEB000F828E /* ViewController */ = {
isa = PBXGroup;
children = (
84A673BC1C0C7AEB000F828E /* AnnounceViewController.h */,
84A673BD1C0C7AEB000F828E /* AnnounceViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84AD4F1D1BF4257C00BFB37C /* View */ = {
isa = PBXGroup;
children = (
84AD4F2D1BF4370E00BFB37C /* InspectHeaderView.h */,
84AD4F2E1BF4370E00BFB37C /* InspectHeaderView.m */,
);
path = View;
sourceTree = "<group>";
};
84AD4F231BF4355700BFB37C /* Model */ = {
isa = PBXGroup;
children = (
84AD4F241BF4356A00BFB37C /* TaskModel.h */,
84AD4F251BF4356A00BFB37C /* TaskModel.m */,
84AD4F271BF4360E00BFB37C /* TaskGroup.h */,
84AD4F281BF4360E00BFB37C /* TaskGroup.m */,
84E0ABCB1BFB082E001C8F45 /* TaskDetailModel.h */,
84E0ABCC1BFB082E001C8F45 /* TaskDetailModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84AD4F331BF448D800BFB37C /* Cell */ = {
isa = PBXGroup;
children = (
84AD4F341BF45BEB00BFB37C /* InspectSortTableCell.h */,
84AD4F351BF45BEB00BFB37C /* InspectSortTableCell.m */,
8473E3861C1BBFF600960257 /* InspectTaskDetailCell.h */,
8473E3871C1BBFF600960257 /* InspectTaskDetailCell.m */,
8473E3891C1BCFC400960257 /* InspectTitleTableViewCell.h */,
8473E38A1C1BCFC400960257 /* InspectTitleTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84AD4F371BF4842C00BFB37C /* View */ = {
isa = PBXGroup;
children = (
84AD4F381BF4844600BFB37C /* RankDetailHeaderView.h */,
84AD4F391BF4844600BFB37C /* RankDetailHeaderView.m */,
84AD4F3B1BF4894D00BFB37C /* RankDetailView.h */,
84AD4F3C1BF4894D00BFB37C /* RankDetailView.m */,
84AD4F441BF4A9E800BFB37C /* RankHeadView.h */,
84AD4F451BF4A9E800BFB37C /* RankHeadView.m */,
);
path = View;
sourceTree = "<group>";
};
84AD4F401BF49FC100BFB37C /* Model */ = {
isa = PBXGroup;
children = (
);
path = Model;
sourceTree = "<group>";
};
84B476531C2E4B1C006C6488 /* PictureCategory */ = {
isa = PBXGroup;
children = (
84B476541C2E4B1C006C6488 /* Cell */,
84B476551C2E4B1C006C6488 /* Model */,
84B476561C2E4B1C006C6488 /* View */,
84B476571C2E4B1C006C6488 /* ViewController */,
);
path = PictureCategory;
sourceTree = "<group>";
};
84B476541C2E4B1C006C6488 /* Cell */ = {
isa = PBXGroup;
children = (
);
path = Cell;
sourceTree = "<group>";
};
84B476551C2E4B1C006C6488 /* Model */ = {
isa = PBXGroup;
children = (
);
path = Model;
sourceTree = "<group>";
};
84B476561C2E4B1C006C6488 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
84B476571C2E4B1C006C6488 /* ViewController */ = {
isa = PBXGroup;
children = (
84B476581C2E4B37006C6488 /* PicCategoryViewController.h */,
84B476591C2E4B37006C6488 /* PicCategoryViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84C582E91BDDFACD00AF838D /* Cell */ = {
isa = PBXGroup;
children = (
8474A01A1BE368D700315F30 /* HomeCellItem.h */,
8474A01B1BE368D700315F30 /* HomeCellItem.m */,
8490C4C41BF9CE85006B6569 /* HomeTitleTableCell.h */,
8490C4C51BF9CE85006B6569 /* HomeTitleTableCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84C957471BDB344900083584 /* Other */ = {
isa = PBXGroup;
children = (
84C957481BDB344900083584 /* Category */,
);
path = Other;
sourceTree = "<group>";
};
84C957481BDB344900083584 /* Category */ = {
isa = PBXGroup;
children = (
84DB9BC51BDCD67200822CC4 /* UIView+Extension.h */,
84C957491BDB344900083584 /* UIBarButtonItem+Create.h */,
84C9574A1BDB344900083584 /* UIBarButtonItem+Create.m */,
84C9574B1BDB344900083584 /* UIView+Frame.h */,
84C9574C1BDB344900083584 /* UIView+Frame.m */,
);
path = Category;
sourceTree = "<group>";
};
84C957501BDB54BB00083584 /* Announce */ = {
isa = PBXGroup;
children = (
84A673AC1C0C7AEB000F828E /* AnnounceDetail */,
84A673B11C0C7AEB000F828E /* AnnounceList */,
);
path = Announce;
sourceTree = "<group>";
};
84CC34BE1C093C2F002F10E2 /* AddOnLine */ = {
isa = PBXGroup;
children = (
84CC34BF1C093C2F002F10E2 /* Cell */,
84CC34C21C093C2F002F10E2 /* View */,
84CC34C51C093C2F002F10E2 /* ViewController */,
);
path = AddOnLine;
sourceTree = "<group>";
};
84CC34BF1C093C2F002F10E2 /* Cell */ = {
isa = PBXGroup;
children = (
84CC34C01C093C2F002F10E2 /* OnLineTableViewCell.h */,
84CC34C11C093C2F002F10E2 /* OnLineTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84CC34C21C093C2F002F10E2 /* View */ = {
isa = PBXGroup;
children = (
84CC34C31C093C2F002F10E2 /* OnLineFooterView.h */,
84CC34C41C093C2F002F10E2 /* OnLineFooterView.m */,
);
path = View;
sourceTree = "<group>";
};
84CC34C51C093C2F002F10E2 /* ViewController */ = {
isa = PBXGroup;
children = (
84CC34C61C093C2F002F10E2 /* OnLineViewController.h */,
84CC34C71C093C2F002F10E2 /* OnLineViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84CC34C81C093C2F002F10E2 /* LookOnLine */ = {
isa = PBXGroup;
children = (
84CEB1681C28F0B50072ED0A /* Model */,
84CC34C91C093C2F002F10E2 /* Cell */,
84CC34CA1C093C2F002F10E2 /* View */,
84CC34CB1C093C2F002F10E2 /* ViewController */,
);
path = LookOnLine;
sourceTree = "<group>";
};
84CC34C91C093C2F002F10E2 /* Cell */ = {
isa = PBXGroup;
children = (
84CC34E01C09583D002F10E2 /* LookOnLineTableViewCell.h */,
84CC34E11C09583D002F10E2 /* LookOnLineTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84CC34CA1C093C2F002F10E2 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
84CC34CB1C093C2F002F10E2 /* ViewController */ = {
isa = PBXGroup;
children = (
84CC34CF1C093C5E002F10E2 /* LookOnLineViewController.h */,
84CC34D01C093C5E002F10E2 /* LookOnLineViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84CC34D51C094557002F10E2 /* Cell */ = {
isa = PBXGroup;
children = (
84CC34D61C094682002F10E2 /* StandardTableViewCell.h */,
84CC34D71C094682002F10E2 /* StandardTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84CC34D91C09538E002F10E2 /* StandardHandout */ = {
isa = PBXGroup;
children = (
84CC34DA1C0953A4002F10E2 /* Cell */,
84CC34DB1C0953A4002F10E2 /* View */,
84CC34DC1C0953A4002F10E2 /* ViewController */,
);
path = StandardHandout;
sourceTree = "<group>";
};
84CC34DA1C0953A4002F10E2 /* Cell */ = {
isa = PBXGroup;
children = (
);
path = Cell;
sourceTree = "<group>";
};
84CC34DB1C0953A4002F10E2 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
84CC34DC1C0953A4002F10E2 /* ViewController */ = {
isa = PBXGroup;
children = (
84CC34DD1C0953C3002F10E2 /* HandOutViewController.h */,
84CC34DE1C0953C3002F10E2 /* HandOutViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84CC34E31C09AD58002F10E2 /* LookOnLineDetail */ = {
isa = PBXGroup;
children = (
84CC34E41C09AD58002F10E2 /* Cell */,
84CC34E51C09AD58002F10E2 /* View */,
84CC34E61C09AD58002F10E2 /* ViewController */,
);
path = LookOnLineDetail;
sourceTree = "<group>";
};
84CC34E41C09AD58002F10E2 /* Cell */ = {
isa = PBXGroup;
children = (
);
path = Cell;
sourceTree = "<group>";
};
84CC34E51C09AD58002F10E2 /* View */ = {
isa = PBXGroup;
children = (
84CC34EA1C09AD98002F10E2 /* LookOnLineDetailView.h */,
84CC34EB1C09AD98002F10E2 /* LookOnLineDetailView.m */,
84E7BD7E1C16809E0030C441 /* LookOnLineFootView.h */,
84E7BD7F1C16809E0030C441 /* LookOnLineFootView.m */,
);
path = View;
sourceTree = "<group>";
};
84CC34E61C09AD58002F10E2 /* ViewController */ = {
isa = PBXGroup;
children = (
84CC34ED1C09AEC0002F10E2 /* LookOnLineDetailViewController.h */,
84CC34EE1C09AEC0002F10E2 /* LookOnLineDetailViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84CEB1641C28E7E40072ED0A /* Model */ = {
isa = PBXGroup;
children = (
84CEB1651C28E8970072ED0A /* SpotCheckModel.h */,
84CEB1661C28E8970072ED0A /* SpotCheckModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84CEB1681C28F0B50072ED0A /* Model */ = {
isa = PBXGroup;
children = (
84CEB1691C28F0E20072ED0A /* LookOnLineModel.h */,
84CEB16A1C28F0E20072ED0A /* LookOnLineModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84CEB16C1C2946590072ED0A /* Model */ = {
isa = PBXGroup;
children = (
84CEB16D1C2946DB0072ED0A /* OnLineDetailModel.h */,
84CEB16E1C2946DB0072ED0A /* OnLineDetailModel.m */,
84CEB1701C2946EC0072ED0A /* StoreDetailModel.h */,
84CEB1711C2946EC0072ED0A /* StoreDetailModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84CF0ECA1BE9A7EF00C855CE /* InspectDetail */ = {
isa = PBXGroup;
children = (
84CF0F1B1BE9B3EE00C855CE /* View */,
84CF0ECB1BE9A7EF00C855CE /* Cell */,
84CF0ECC1BE9A7EF00C855CE /* ViewController */,
);
path = InspectDetail;
sourceTree = "<group>";
};
84CF0ECB1BE9A7EF00C855CE /* Cell */ = {
isa = PBXGroup;
children = (
84D863681C1148EC00E4F4CC /* InpectPictureCell.h */,
84D863691C1148EC00E4F4CC /* InpectPictureCell.m */,
84D8636A1C1148EC00E4F4CC /* InspectAddCell.h */,
84D8636B1C1148EC00E4F4CC /* InspectAddCell.m */,
84D8636C1C1148EC00E4F4CC /* InspectPicAddCell.h */,
84D8636D1C1148EC00E4F4CC /* InspectPicAddCell.m */,
84D3E5F71C04BD8E001FF1DD /* InspectNotUpLoadCell.h */,
84D3E5F81C04BD8E001FF1DD /* InspectNotUpLoadCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84CF0ECC1BE9A7EF00C855CE /* ViewController */ = {
isa = PBXGroup;
children = (
84D3E5EE1C04BC8C001FF1DD /* InspectUploadedViewController.h */,
84D3E5EF1C04BC8C001FF1DD /* InspectUploadedViewController.m */,
84D3E5F11C04BCD3001FF1DD /* InspectNotUploadViewController.h */,
84D3E5F21C04BCD3001FF1DD /* InspectNotUploadViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84CF0F1B1BE9B3EE00C855CE /* View */ = {
isa = PBXGroup;
children = (
84CF0F1C1BE9B40400C855CE /* InspectDetailFooterView.h */,
84CF0F1D1BE9B40400C855CE /* InspectDetailFooterView.m */,
84CF0FA01BE9EDA900C855CE /* TakePhotoView.h */,
84CF0FA11BE9EDA900C855CE /* TakePhotoView.m */,
84D3E6001C04DA85001FF1DD /* InspectUpLoadFootView.h */,
84D3E6011C04DA85001FF1DD /* InspectUpLoadFootView.m */,
);
path = View;
sourceTree = "<group>";
};
84D2F5111C2CD3C300651EFB /* SOPCategarys */ = {
isa = PBXGroup;
children = (
84D2F5121C2CD3C300651EFB /* Cell */,
84D2F5131C2CD3C300651EFB /* View */,
84D2F5141C2CD3C300651EFB /* ViewController */,
);
path = SOPCategarys;
sourceTree = "<group>";
};
84D2F5121C2CD3C300651EFB /* Cell */ = {
isa = PBXGroup;
children = (
);
path = Cell;
sourceTree = "<group>";
};
84D2F5131C2CD3C300651EFB /* View */ = {
isa = PBXGroup;
children = (
84D2F5181C2CE67500651EFB /* SOPTableView.h */,
84D2F5191C2CE67500651EFB /* SOPTableView.m */,
);
path = View;
sourceTree = "<group>";
};
84D2F5141C2CD3C300651EFB /* ViewController */ = {
isa = PBXGroup;
children = (
84D2F5151C2CD3D400651EFB /* SOPViewController.h */,
84D2F5161C2CD3D400651EFB /* SOPViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84D2F52A1C2D739700651EFB /* Cell */ = {
isa = PBXGroup;
children = (
84D2F52B1C2D739700651EFB /* RankDetailTableCell.h */,
84D2F52C1C2D739700651EFB /* RankDetailTableCell.m */,
84D2F52D1C2D739700651EFB /* RankScrollTableViewCell.h */,
84D2F52E1C2D739700651EFB /* RankScrollTableViewCell.m */,
84D2F52F1C2D739700651EFB /* RankSectionTableCell.h */,
84D2F5301C2D739700651EFB /* RankSectionTableCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84D2F5311C2D739700651EFB /* ViewController */ = {
isa = PBXGroup;
children = (
84D2F5321C2D739700651EFB /* RankDetailViewController.h */,
84D2F5331C2D739700651EFB /* RankDetailViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84DB9BC11BDCD49900822CC4 /* CustomDropMenu */ = {
isa = PBXGroup;
children = (
84DB9BC61BDCD67200822CC4 /* UIView+Extension.m */,
84DB9BC21BDCD4B600822CC4 /* CustomDropMenuView.h */,
84DB9BC31BDCD4B600822CC4 /* CustomDropMenuView.m */,
);
path = CustomDropMenu;
sourceTree = "<group>";
};
84E363CC1BFAC3600061547E /* Model */ = {
isa = PBXGroup;
children = (
84E363D01BFAC5200061547E /* TaskListModel.h */,
84E363D11BFAC5200061547E /* TaskListModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84ECCF151C01FA0E00EA4960 /* Model */ = {
isa = PBXGroup;
children = (
84ECCF161C01FA2600EA4960 /* QuestionDetailModel.h */,
84ECCF171C01FA2600EA4960 /* QuestionDetailModel.m */,
84ECCF191C0210F000EA4960 /* CommentModel.h */,
84ECCF1A1C0210F000EA4960 /* CommentModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84F166981BE715D20061D350 /* ZanButton */ = {
isa = PBXGroup;
children = (
84F166991BE715E40061D350 /* ZanButton.h */,
84F1669A1BE715E40061D350 /* ZanButton.m */,
);
path = ZanButton;
sourceTree = "<group>";
};
84F30DA11BFC19DF00CBAD13 /* Model */ = {
isa = PBXGroup;
children = (
846206B61C06AFCA0015C456 /* RankCommentModel.h */,
846206B71C06AFCA0015C456 /* RankCommentModel.m */,
84F30DA21BFC19F200CBAD13 /* RankListModel.h */,
84F30DA31BFC19F200CBAD13 /* RankListModel.m */,
);
path = Model;
sourceTree = "<group>";
};
84F57C421BEC388A00DDEEB1 /* Comment */ = {
isa = PBXGroup;
children = (
84F57C431BEC388A00DDEEB1 /* View */,
);
path = Comment;
sourceTree = "<group>";
};
84F57C431BEC388A00DDEEB1 /* View */ = {
isa = PBXGroup;
children = (
84F57C441BEC388A00DDEEB1 /* CommentView.h */,
84F57C451BEC388A00DDEEB1 /* CommentView.m */,
84720BBF1C0377D300314099 /* CommentWithStarView.h */,
84720BC01C0377D300314099 /* CommentWithStarView.m */,
);
path = View;
sourceTree = "<group>";
};
84F57C471BEC782D00DDEEB1 /* AddQuestion */ = {
isa = PBXGroup;
children = (
84F57C4D1BEC7A8C00DDEEB1 /* View */,
84F57C481BEC784A00DDEEB1 /* Cell */,
84F57C491BEC784A00DDEEB1 /* ViewController */,
);
path = AddQuestion;
sourceTree = "<group>";
};
84F57C481BEC784A00DDEEB1 /* Cell */ = {
isa = PBXGroup;
children = (
84D863711C11923F00E4F4CC /* AddQuestionTableCell.h */,
84D863721C11923F00E4F4CC /* AddQuestionTableCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
84F57C491BEC784A00DDEEB1 /* ViewController */ = {
isa = PBXGroup;
children = (
84F57C4A1BEC785E00DDEEB1 /* AddQuestionViewController.h */,
84F57C4B1BEC785E00DDEEB1 /* AddQuestionViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84F57C4D1BEC7A8C00DDEEB1 /* View */ = {
isa = PBXGroup;
children = (
84F57C4E1BEC7AA300DDEEB1 /* AddQuestionFooterView.h */,
84F57C4F1BEC7AA300DDEEB1 /* AddQuestionFooterView.m */,
);
path = View;
sourceTree = "<group>";
};
84F57C991BECA72C00DDEEB1 /* StarBar */ = {
isa = PBXGroup;
children = (
84F57C9A1BECA73800DDEEB1 /* StarBar.h */,
84F57C9B1BECA73800DDEEB1 /* StarBar.m */,
);
path = StarBar;
sourceTree = "<group>";
};
84FAC75E1BFF2C5B00FD094D /* NoData */ = {
isa = PBXGroup;
children = (
84FAC75F1BFF2C6E00FD094D /* NoDataView.h */,
84FAC7601BFF2C6E00FD094D /* NoDataView.m */,
);
path = NoData;
sourceTree = "<group>";
};
84FD89ED1BD9FC5B006E442A /* Home */ = {
isa = PBXGroup;
children = (
84C582E91BDDFACD00AF838D /* Cell */,
84FD89EE1BD9FC5B006E442A /* View */,
84FD89EF1BD9FC5B006E442A /* ViewController */,
);
path = Home;
sourceTree = "<group>";
};
84FD89EE1BD9FC5B006E442A /* View */ = {
isa = PBXGroup;
children = (
84D825801BDD35E000CC61F7 /* HomeHeaderView.h */,
84D825811BDD35E000CC61F7 /* HomeHeaderView.m */,
);
path = View;
sourceTree = "<group>";
};
84FD89EF1BD9FC5B006E442A /* ViewController */ = {
isa = PBXGroup;
children = (
84FD89F01BD9FC71006E442A /* HomeViewController.h */,
84FD89F11BD9FC71006E442A /* HomeViewController.m */,
84D554EC1C0EDFB8006C9AD0 /* SearchViewController.h */,
84D554ED1C0EDFB8006C9AD0 /* SearchViewController.m */,
);
path = ViewController;
sourceTree = "<group>";
};
84FD89F81BDA0136006E442A /* Mine */ = {
isa = PBXGroup;
children = (
84FD89F91BDA0136006E442A /* View */,
84FD89FA1BDA0136006E442A /* ViewController */,
);
path = Mine;
sourceTree = "<group>";
};
84FD89F91BDA0136006E442A /* View */ = {
isa = PBXGroup;
children = (
8442BA5A1BDB8FDB005E5657 /* MineTableHeaderView.h */,
8442BA5B1BDB8FDB005E5657 /* MineTableHeaderView.m */,
84D8257D1BDD2F7E00CC61F7 /* MineTableFooterView.h */,
84D8257E1BDD2F7E00CC61F7 /* MineTableFooterView.m */,
);
path = View;
sourceTree = "<group>";
};
84FD89FA1BDA0136006E442A /* ViewController */ = {
isa = PBXGroup;
children = (
84FD8A081BDA01D1006E442A /* MineViewController.h */,
84FD8A091BDA01D1006E442A /* MineViewController.m */,
84945F181C2A6A4A00C1793C /* About */,
);
path = ViewController;
sourceTree = "<group>";
};
DA794C35494A6C844D6EE3C9 /* Frameworks */ = {
isa = PBXGroup;
children = (
083F3F95EB690FA24FEC0C8E /* libPods.a */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
84970DE91BD8DD8A00C1728A /* redstar */ = {
isa = PBXNativeTarget;
buildConfigurationList = 84970E171BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstar" */;
buildPhases = (
BC0FD901EAA939388DD7E146 /* Check Pods Manifest.lock */,
84970DE61BD8DD8A00C1728A /* Sources */,
84970DE71BD8DD8A00C1728A /* Frameworks */,
84970DE81BD8DD8A00C1728A /* Resources */,
23955BAECB0FED236FD29A26 /* Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
);
name = redstar;
productName = redstar;
productReference = 84970DEA1BD8DD8A00C1728A /* redstar.app */;
productType = "com.apple.product-type.application";
};
84970E021BD8DD8A00C1728A /* redstarTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 84970E1A1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarTests" */;
buildPhases = (
84970DFF1BD8DD8A00C1728A /* Sources */,
84970E001BD8DD8A00C1728A /* Frameworks */,
84970E011BD8DD8A00C1728A /* Resources */,
);
buildRules = (
);
dependencies = (
84970E051BD8DD8A00C1728A /* PBXTargetDependency */,
);
name = redstarTests;
productName = redstarTests;
productReference = 84970E031BD8DD8A00C1728A /* redstarTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
84970E0D1BD8DD8A00C1728A /* redstarUITests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 84970E1D1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarUITests" */;
buildPhases = (
84970E0A1BD8DD8A00C1728A /* Sources */,
84970E0B1BD8DD8A00C1728A /* Frameworks */,
84970E0C1BD8DD8A00C1728A /* Resources */,
);
buildRules = (
);
dependencies = (
84970E101BD8DD8A00C1728A /* PBXTargetDependency */,
);
name = redstarUITests;
productName = redstarUITests;
productReference = 84970E0E1BD8DD8A00C1728A /* redstarUITests.xctest */;
productType = "com.apple.product-type.bundle.ui-testing";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
84970DE21BD8DD8A00C1728A /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0700;
ORGANIZATIONNAME = ZWF;
TargetAttributes = {
84970DE91BD8DD8A00C1728A = {
CreatedOnToolsVersion = 7.0.1;
DevelopmentTeam = SVECB8P766;
};
84970E021BD8DD8A00C1728A = {
CreatedOnToolsVersion = 7.0.1;
TestTargetID = 84970DE91BD8DD8A00C1728A;
};
84970E0D1BD8DD8A00C1728A = {
CreatedOnToolsVersion = 7.0.1;
TestTargetID = 84970DE91BD8DD8A00C1728A;
};
};
};
buildConfigurationList = 84970DE51BD8DD8A00C1728A /* Build configuration list for PBXProject "redstar" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 84970DE11BD8DD8A00C1728A;
productRefGroup = 84970DEB1BD8DD8A00C1728A /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
84970DE91BD8DD8A00C1728A /* redstar */,
84970E021BD8DD8A00C1728A /* redstarTests */,
84970E0D1BD8DD8A00C1728A /* redstarUITests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
84970DE81BD8DD8A00C1728A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
84970DFD1BD8DD8A00C1728A /* LaunchScreen.storyboard in Resources */,
84AD4F3F1BF498A900BFB37C /* ranking.plist in Resources */,
84970DFA1BD8DD8A00C1728A /* Assets.xcassets in Resources */,
84AD4F221BF42F8E00BFB37C /* classfiy.plist in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84970E011BD8DD8A00C1728A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
84970E0C1BD8DD8A00C1728A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
23955BAECB0FED236FD29A26 /* Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n";
showEnvVarsInLog = 0;
};
BC0FD901EAA939388DD7E146 /* Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Check Pods Manifest.lock";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
84970DE61BD8DD8A00C1728A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8490C4C61BF9CE85006B6569 /* HomeTitleTableCell.m in Sources */,
8497B62B1C043671007ECBE6 /* InspectTableView.m in Sources */,
8409BDF91C281ACD00354460 /* SelectYetTableViewCell.m in Sources */,
84AD4F261BF4356A00BFB37C /* TaskModel.m in Sources */,
84E7BD801C16809E0030C441 /* LookOnLineFootView.m in Sources */,
841D24FB1BEB75CA0005CC9F /* QuestionDetailFooterView.m in Sources */,
84CF0FA21BE9EDA900C855CE /* TakePhotoView.m in Sources */,
846206BB1C06AFF50015C456 /* RankCommentCell.m in Sources */,
84CEB16B1C28F0E20072ED0A /* LookOnLineModel.m in Sources */,
849B2F741C0CA60E005D809F /* AnnounceDetailFootView.m in Sources */,
841D24F81BEB473C0005CC9F /* CheckPicViewController.m in Sources */,
84D80EB61BF714BE00A10EA4 /* GroupTabBar.m in Sources */,
8487D7721BF19A9C00E63E90 /* SearchToolBar.m in Sources */,
84970E361BD8E09D00C1728A /* LoginViewController.m in Sources */,
84720BC11C0377D300314099 /* CommentWithStarView.m in Sources */,
846206B81C06AFCA0015C456 /* RankCommentModel.m in Sources */,
84A6738E1C0BE2D0000F828E /* OnLineCompleteCell.m in Sources */,
84CEB1671C28E8970072ED0A /* SpotCheckModel.m in Sources */,
84CC34D41C094476002F10E2 /* StandardViewController.m in Sources */,
84FD8A0A1BDA01D1006E442A /* MineViewController.m in Sources */,
84C972991C1ADB9C003A3276 /* PictureDetailTableCell.m in Sources */,
848A20271C183FCB00422FAB /* OnLineResultViewController.m in Sources */,
8409BDF81C281ACD00354460 /* CheckBoxButton.m in Sources */,
848699B21BDF810900859DFE /* InspectListViewController.m in Sources */,
84BB16A21C191A7F00383A64 /* OnLineResultFootView.m in Sources */,
84846E971BE069BC0010550A /* DateButton.m in Sources */,
84CC34CC1C093C2F002F10E2 /* OnLineTableViewCell.m in Sources */,
84945F1B1C2A6A6300C1793C /* AboutMeViewController.m in Sources */,
84E363D21BFAC5200061547E /* TaskListModel.m in Sources */,
84D2F5351C2D739700651EFB /* RankScrollTableViewCell.m in Sources */,
84C9574E1BDB344900083584 /* UIView+Frame.m in Sources */,
848699B01BDF810900859DFE /* InspectListCell.m in Sources */,
846206B51C06AF700015C456 /* RankListHeaderView.m in Sources */,
84AD4F3A1BF4844600BFB37C /* RankDetailHeaderView.m in Sources */,
8490C4D41BF9DEF0006B6569 /* PictureViewController.m in Sources */,
84CEB1721C2946EC0072ED0A /* StoreDetailModel.m in Sources */,
8474C5951BE78AE1007DCF19 /* QuestionDetailViewController.m in Sources */,
84970DEF1BD8DD8A00C1728A /* main.m in Sources */,
84D2F5361C2D739700651EFB /* RankSectionTableCell.m in Sources */,
8474A01C1BE368D700315F30 /* HomeCellItem.m in Sources */,
8409BDFD1C281ACD00354460 /* TreeView.m in Sources */,
8409BDFB1C281ACD00354460 /* TreeNodeModel.m in Sources */,
84D2F5171C2CD3D400651EFB /* SOPViewController.m in Sources */,
84CC34D11C093C5E002F10E2 /* LookOnLineViewController.m in Sources */,
84D863731C11923F00E4F4CC /* AddQuestionTableCell.m in Sources */,
84D8257F1BDD2F7E00CC61F7 /* MineTableFooterView.m in Sources */,
84F57C501BEC7AA300DDEEB1 /* AddQuestionFooterView.m in Sources */,
84CF0F1E1BE9B40400C855CE /* InspectDetailFooterView.m in Sources */,
84F30DA41BFC19F200CBAD13 /* RankListModel.m in Sources */,
8409BDFC1C281ACD00354460 /* SelectStoreHeadView.m in Sources */,
8491F6C61C2BCD8D00A00395 /* SpotCheckTableViewCell.m in Sources */,
84CC34EF1C09AEC0002F10E2 /* LookOnLineDetailViewController.m in Sources */,
8487D8091BF20FAD00E63E90 /* TaxisView.m in Sources */,
84A673C71C0C7E0C000F828E /* AnnounceDetailHeadView.m in Sources */,
84AD4F361BF45BEB00BFB37C /* InspectSortTableCell.m in Sources */,
8480BEA21C14326100E2F18F /* MoreScreenView.m in Sources */,
84970E281BD8DEFE00C1728A /* AppDelegate.m in Sources */,
84D2F5341C2D739700651EFB /* RankDetailTableCell.m in Sources */,
8409BDFE1C281ACD00354460 /* SelectStoreViewController.m in Sources */,
849B2F771C0CABE6005D809F /* AnnounceDetailModel.m in Sources */,
8490C4C31BF9A394006B6569 /* CustomPageControl.m in Sources */,
848A201D1C180C1900422FAB /* OnLineCompleteDetailCell.m in Sources */,
84CEB16F1C2946DB0072ED0A /* OnLineDetailModel.m in Sources */,
84F57C461BEC388A00DDEEB1 /* CommentView.m in Sources */,
84D2F51A1C2CE67500651EFB /* SOPTableView.m in Sources */,
84ED5DD81BF2E64300A1BB6D /* ScreenView.m in Sources */,
8474C5831BE751A2007DCF19 /* CommonFunc.m in Sources */,
84DC873E1C24E90E00811037 /* AddPicTextTableViewCell.m in Sources */,
848699B31BDF810900859DFE /* InspectTaskViewController.m in Sources */,
84CC34D81C094682002F10E2 /* StandardTableViewCell.m in Sources */,
84CC34EC1C09AD98002F10E2 /* LookOnLineDetailView.m in Sources */,
84E420471BE88AE000689976 /* RootTabBarController.m in Sources */,
84D3E5F01C04BC8C001FF1DD /* InspectUploadedViewController.m in Sources */,
8487D80C1BF218F900E63E90 /* MenuView.m in Sources */,
84CC34CE1C093C2F002F10E2 /* OnLineViewController.m in Sources */,
84D8636E1C1148EC00E4F4CC /* InpectPictureCell.m in Sources */,
8480BEAF1C143A2200E2F18F /* TimeTableView.m in Sources */,
8474C5921BE78A85007DCF19 /* QuestionViewController.m in Sources */,
84A673BF1C0C7AEB000F828E /* AnnounceModel.m in Sources */,
84DC87411C24F33900811037 /* AddButtonTableViewCell.m in Sources */,
84CC34CD1C093C2F002F10E2 /* OnLineFooterView.m in Sources */,
84AD4F291BF4360E00BFB37C /* TaskGroup.m in Sources */,
84FAC7611BFF2C6E00FD094D /* NoDataView.m in Sources */,
84A673C41C0C7B0A000F828E /* AnnoDetailViewController.m in Sources */,
84AD4F2F1BF4370E00BFB37C /* InspectHeaderView.m in Sources */,
8480BEAC1C143A1600E2F18F /* CategoryTableView.m in Sources */,
8473E3881C1BBFF600960257 /* InspectTaskDetailCell.m in Sources */,
84F57C9C1BECA73800DDEEB1 /* StarBar.m in Sources */,
84F57C4C1BEC785E00DDEEB1 /* AddQuestionViewController.m in Sources */,
84EE92771C2FFDEB000EF5BF /* AttachmentModel.m in Sources */,
84D2F5201C2D213400651EFB /* AttachmentTableViewCell.m in Sources */,
84C9729F1C1ADD17003A3276 /* PictureCommentTableCell.m in Sources */,
849A18461C152EBA00071600 /* AddPictureTableCell.m in Sources */,
84D80EB51BF714BE00A10EA4 /* GroupItems.m in Sources */,
84A673BE1C0C7AEB000F828E /* AnnoTableViewCell.m in Sources */,
84C9574D1BDB344900083584 /* UIBarButtonItem+Create.m in Sources */,
84AD4F3D1BF4894D00BFB37C /* RankDetailView.m in Sources */,
84C972961C1ABE08003A3276 /* PicScreenView.m in Sources */,
8473E38B1C1BCFC400960257 /* InspectTitleTableViewCell.m in Sources */,
84ECCF1B1C0210F000EA4960 /* CommentModel.m in Sources */,
846ABDF51C1E5E780020C331 /* PictureListModel.m in Sources */,
84E0ABCD1BFB082E001C8F45 /* TaskDetailModel.m in Sources */,
8490C4D31BF9DEF0006B6569 /* PictureTableCell.m in Sources */,
84970E391BD8E0B300C1728A /* LoginView.m in Sources */,
84DB9BC41BDCD4B600822CC4 /* CustomDropMenuView.m in Sources */,
84D3E5F31C04BCD3001FF1DD /* InspectNotUploadViewController.m in Sources */,
8409BDFA1C281ACD00354460 /* TreeNodeCell.m in Sources */,
846ABDF91C1E74430020C331 /* PictureDetailModel.m in Sources */,
84D3E5F91C04BD8E001FF1DD /* InspectNotUpLoadCell.m in Sources */,
84ECCF181C01FA2600EA4960 /* QuestionDetailModel.m in Sources */,
843D1B9E1C0B3F7600E30002 /* SpotCheckOnLineViewController.m in Sources */,
84846E9A1BE07CDF0010550A /* RankingListCell.m in Sources */,
846ABDFC1C1EAB160020C331 /* PicTextModel.m in Sources */,
84A673911C0C2681000F828E /* FunctionViewController.m in Sources */,
848699B61BDF812F00859DFE /* RankingListViewController.m in Sources */,
84D2F5371C2D739700651EFB /* RankDetailViewController.m in Sources */,
84C9729C1C1ADC5B003A3276 /* PictureTextTableCell.m in Sources */,
84D825821BDD35E000CC61F7 /* HomeHeaderView.m in Sources */,
849A18431C152CEE00071600 /* AddPictureViewController.m in Sources */,
8480BEA61C14378C00E2F18F /* ScopeTableView.m in Sources */,
84FD89F21BD9FC71006E442A /* HomeViewController.m in Sources */,
84AD4F461BF4A9E800BFB37C /* RankHeadView.m in Sources */,
8480BEA91C143A0800E2F18F /* GroupTableView.m in Sources */,
84E420411BE849FC00689976 /* QuestionDescribeCell.m in Sources */,
84DB9BC71BDCD67200822CC4 /* UIView+Extension.m in Sources */,
8462C6EC1BF5F3BE00344DDD /* MenuButton.m in Sources */,
848A202D1C184DC600422FAB /* OnLineResultDetailCell.m in Sources */,
8442BA5C1BDB8FDB005E5657 /* MineTableHeaderView.m in Sources */,
84CC34E21C09583D002F10E2 /* LookOnLineTableViewCell.m in Sources */,
8480BEB21C143A4100E2F18F /* StateTableView.m in Sources */,
849B2F711C0CA22F005D809F /* AnnoContentTableViewCell.m in Sources */,
84A2270E1C229409002766DC /* RankPickView.m in Sources */,
84B4765A1C2E4B37006C6488 /* PicCategoryViewController.m in Sources */,
84D3E6021C04DA85001FF1DD /* InspectUpLoadFootView.m in Sources */,
84A673881C0B50B4000F828E /* OnLineCompleteViewController.m in Sources */,
8474C5991BE78BBC007DCF19 /* QuestionDetailCell.m in Sources */,
8474C5911BE78A85007DCF19 /* QuestionListTableCell.m in Sources */,
8490C4D71BF9DF1D006B6569 /* PictureStoryViewController.m in Sources */,
84D554EE1C0EDFB8006C9AD0 /* SearchViewController.m in Sources */,
84A673C01C0C7AEB000F828E /* FuncItem.m in Sources */,
84F1669B1BE715E40061D350 /* ZanButton.m in Sources */,
84D863701C1148EC00E4F4CC /* InspectPicAddCell.m in Sources */,
84D8636F1C1148EC00E4F4CC /* InspectAddCell.m in Sources */,
84CC34DF1C0953C3002F10E2 /* HandOutViewController.m in Sources */,
8419EAD41BEDC98F002635ED /* HttpClient.m in Sources */,
84A673C11C0C7AEB000F828E /* AnnounceViewController.m in Sources */,
842547FC1BF03977006C79C5 /* QuestionModel.m in Sources */,
84E420441BE84A2300689976 /* QuestionCommentCell.m in Sources */,
84D98D131C210F3300C7C96F /* RankScreenTableViewCell.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84970DFF1BD8DD8A00C1728A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
84970E081BD8DD8A00C1728A /* redstarTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84970E0A1BD8DD8A00C1728A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
84970E131BD8DD8A00C1728A /* redstarUITests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
84970E051BD8DD8A00C1728A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 84970DE91BD8DD8A00C1728A /* redstar */;
targetProxy = 84970E041BD8DD8A00C1728A /* PBXContainerItemProxy */;
};
84970E101BD8DD8A00C1728A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 84970DE91BD8DD8A00C1728A /* redstar */;
targetProxy = 84970E0F1BD8DD8A00C1728A /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
84970DFB1BD8DD8A00C1728A /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
84970DFC1BD8DD8A00C1728A /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
84970E151BD8DD8A00C1728A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
84970E161BD8DD8A00C1728A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
84970E181BD8DD8A00C1728A /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 6C6D8B0ECF8531E34D0DFF6B /* Pods.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
GCC_PREFIX_HEADER = "$(SRCROOT)/redstar/redstar.pch";
INFOPLIST_FILE = redstar/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstar;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
84970E191BD8DD8A00C1728A /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 13B0DDED3E0E584D79B395CF /* Pods.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
GCC_PREFIX_HEADER = "$(SRCROOT)/redstar/redstar.pch";
INFOPLIST_FILE = redstar/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstar;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
84970E1B1BD8DD8A00C1728A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
INFOPLIST_FILE = redstarTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarTests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/redstar.app/redstar";
};
name = Debug;
};
84970E1C1BD8DD8A00C1728A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
INFOPLIST_FILE = redstarTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarTests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/redstar.app/redstar";
};
name = Release;
};
84970E1E1BD8DD8A00C1728A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
INFOPLIST_FILE = redstarUITests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_TARGET_NAME = redstar;
USES_XCTRUNNER = YES;
};
name = Debug;
};
84970E1F1BD8DD8A00C1728A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
INFOPLIST_FILE = redstarUITests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_TARGET_NAME = redstar;
USES_XCTRUNNER = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
84970DE51BD8DD8A00C1728A /* Build configuration list for PBXProject "redstar" */ = {
isa = XCConfigurationList;
buildConfigurations = (
84970E151BD8DD8A00C1728A /* Debug */,
84970E161BD8DD8A00C1728A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
84970E171BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstar" */ = {
isa = XCConfigurationList;
buildConfigurations = (
84970E181BD8DD8A00C1728A /* Debug */,
84970E191BD8DD8A00C1728A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
84970E1A1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
84970E1B1BD8DD8A00C1728A /* Debug */,
84970E1C1BD8DD8A00C1728A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
84970E1D1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarUITests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
84970E1E1BD8DD8A00C1728A /* Debug */,
84970E1F1BD8DD8A00C1728A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 84970DE21BD8DD8A00C1728A /* Project object */;
}