123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- //
- // LZMMyFansViewController.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/19.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LZMMyFansViewController.h"
- #import "LZMOrderTableView.h"
- #import "MLMSegmentHead.h"
- #import "MLMSegmentManager.h"
- #import "LZMChildFansViewController.h"
- #import "LZMFansHeaderView.h"
- #import "LZMShowFansHelpView.h"
- #import "CCAlertShowView.h"
- #import "LZMPotentialFansViewController.h"
- @interface LZMMyFansViewController ()
- <
- UITableViewDelegate,
- UITableViewDataSource,
- MLMSegmentScrollDelegate
- >
- @property (nonatomic, strong) LZMOrderTableView *tableView;
- @property (nonatomic, strong) LZMFansHeaderView *headerView;
- @property (nonatomic, strong) MLMSegmentHead *titleView;
- @property (nonatomic, strong) MLMSegmentScroll *segScroll;
- @property (nonatomic, strong) NSMutableArray *vcList;
- @property (nonatomic, assign) BOOL canScroll;
- @property (nonatomic, strong) UIButton *rightHelpBtn;
- @end
- @implementation LZMMyFansViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- [self configNavigationBar];
- [self configTableView];
- [self creatHeaderViewAndFooterView];
- }
- - (void)configTableView {
- // [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeScrollStatus) name:@"leaveTop" object:nil];
- // self.canScroll = YES;
- // self.headerView = [[LZMFansHeaderView alloc] initWithFrame:CGRectMake(0, 0,SCREEN_WIDTH , 135)];
- // self.tableView.tableHeaderView = self.headerView;
- [self.view addSubview:self.tableView];
- }
- - (void)configNavigationBar {
- [self.navigationBar setNavTitle:@"我的好友"];
- self.navigationBar.backgroundColor = [UIColor changeColor];
- self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
- UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
- [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
- [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
- [self.navigationBar setCustomLeftButtons:@[leftBtn]];
-
- self.rightHelpBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
- [self.rightHelpBtn setImage:[UIImage imageNamed:@"helpmonth"] forState:UIControlStateNormal];
- [self.rightHelpBtn addTarget:self action:@selector(showHelpAlert) forControlEvents:UIControlEventTouchUpInside];
- self.rightHelpBtn.hidden = YES;
- [self.navigationBar setCustomRightButtons:@[self.rightHelpBtn]];
- }
- -(void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
- }
- - (void)backAction {
- [self.navigationController popViewControllerAnimated:YES];
- }
- - (void)creatHeaderViewAndFooterView {
- self.view.backgroundColor = [UIColor whiteColor];
-
- NSArray *titleArr = @[@"全部好友",@"直属好友",@"推荐好友",@"潜在好友"];
- for (int i = 0; i < titleArr.count; i++) {
- if (i == 3) {
- LZMPotentialFansViewController *child = [[LZMPotentialFansViewController alloc] init];
- [self.vcList addObject:child];
- }else {
- LZMChildFansViewController *child = [[LZMChildFansViewController alloc] init];
- child.type=i;
- [self.vcList addObject:child];
- }
-
- }
- self.segScroll = [[MLMSegmentScroll alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, ChildTableViewHeight) vcOrViews:self.vcList];
- self.segScroll.bounces = NO;
- __weak typeof(self) weskSelf = self;
- self.segScroll.showingIndex = ^(NSInteger index) {
- weskSelf.rightHelpBtn.hidden = index!=3;
- };
- self.titleView = [[MLMSegmentHead alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, 40) titles:titleArr headStyle:SegmentHeadStyleDefault layoutStyle:MLMSegmentLayoutDefault];
- self.titleView.headColor = [UIColor whiteColor];
- self.titleView.bottomLineHeight = 1;
- self.titleView.bottomLineColor = [UIColor yhGrayColor];
- self.titleView.fontScale = 1;
- self.titleView.fontSize = 14;
- self.titleView.equalSize = YES;
- self.titleView.showIndex = 0;
- self.titleView.selectColor = [UIColor YHColorWithHex:0xff442a];
- self.titleView.deSelectColor = [UIColor YHColorWithHex:0x666666];
- [MLMSegmentManager associateHead:self.titleView withScroll:self.segScroll completion:^{
- [self.view addSubview:self.titleView];
- [self.view addSubview:self.segScroll];
- }];
- }
- #pragma mark ===
- - (void)showHelpAlert {
- LZMShowFansHelpView *popView = [[LZMShowFansHelpView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH-80, 213)];
- CCAlertShowView *showView = [CCAlertShowView alertViewWithView:popView];
- popView.dismissAction = ^{
- [showView dismiss];
- };
- [showView show];
- }
- #pragma mark --------------------- UITableView delegate -------
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return 1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return 1;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return 0.1;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- return 40;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
- return SCREEN_HEIGHT-NavBarHeight-40;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"];
- return cell;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
- return self.titleView;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
- return self.segScroll;
- }
- #pragma mark ----- scroll delegete ----
- //- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
- // CGFloat bottomCellOffset = [_tableView rectForSection:0].origin.y;
- // if (scrollView.contentOffset.y >= bottomCellOffset) {
- // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
- // if (self.canScroll) {
- // self.canScroll = NO;
- // [self setChildViewControllerCanScroll:YES];
- // }
- // }else{
- // if (!self.canScroll) {//子视图没到顶部
- // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
- // }
- // }
- //}
- //
- //- (void)setChildViewControllerCanScroll:(BOOL)childCanScroll {
- // for (LZMChildFansViewController *childVc in self.vcList) {
- // childVc.childCanScroll = childCanScroll;
- // if (!childCanScroll) {
- // childVc.tableView.contentOffset = CGPointZero;
- // }
- // }
- //}
- #pragma mark ----------------
- - (LZMOrderTableView *)tableView {
- if (!_tableView) {
- _tableView = [[LZMOrderTableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStylePlain];
- _tableView.estimatedSectionHeaderHeight = 0;
- _tableView.estimatedSectionFooterHeight = 0;
- _tableView.sectionFooterHeight = 0;
- _tableView.sectionHeaderHeight = 0;
- _tableView.estimatedRowHeight = 0;
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- _tableView.backgroundColor = [UIColor yhGrayColor];
- _tableView.bounces = NO;
- _tableView.showsVerticalScrollIndicator = NO;
-
-
- [_tableView setSeparatorColor:[UIColor YHColorWithHex:0xdddddd]];
-
- }
- return _tableView;
- }
- - (NSMutableArray *)vcList {
- if (!_vcList) {
- _vcList = [NSMutableArray array];
- }
- return _vcList;
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- -(void)aFgYCa:(UIEvent*) aFgYCa ar6EFHm:(UIUserInterfaceIdiom*) ar6EFHm augotI:(UIUserInterfaceIdiom*) augotI aZePzUfC4Jo:(UIBarButtonItem*) aZePzUfC4Jo aMmNi8bJs4:(UIFontWeight*) aMmNi8bJs4 aIutwCk5mhF:(UIKeyCommand*) aIutwCk5mhF aGBFO:(UILabel*) aGBFO a1jqgIeS:(UIScreen*) a1jqgIeS aTBCKyq0u:(UIBarButtonItem*) aTBCKyq0u aD20RmX:(UIFontWeight*) aD20RmX {
- NSLog(@"VpxDjLMkUgc4JIH6Btah5eN2b9z3P");
- NSLog(@"0s2yJMKlSw7gXeLz9UQT5C6jHpG3Wixrobm");
- NSLog(@"EO0yDLVBHWmJ");
- NSLog(@"2IsHVZONfrK3Lp4he15UdEPmz");
- NSLog(@"fHLAouKUmgGDMeO30rxVYaXkWJwN1l7svq");
- NSLog(@"ZXGvtz8n5M3TIlBFE0Rx29bSHVWYwyjaP");
- NSLog(@"Y4GariPkgHBMN6zujXSe0");
- NSLog(@"aVui2hm1UzqZvCw5KpJABSxcNMy7oQIbtf");
- NSLog(@"hfbY7XR68U1C0lr9uzDLBsVZAgpKwEm4");
- NSLog(@"PvXg89BIyVnai3Jf245bGWFE");
- NSLog(@"4E5GK1z6Wrh");
- NSLog(@"pZNIWuRa276Mm9rKPA1D0cvHCbsFGnUJk");
- NSLog(@"a9tw2bNMuRhWlJZLDXIpxevyPOso0BdTVmzkiCS");
- NSLog(@"51o0C8bRVIHSmK2UxhcPNkE9");
- NSLog(@"igtswh3dK5TpSLYeFrHEIQmnjvP6CxuWzlo");
- NSLog(@"WPrSqavTi4LB0Fl6pJXkKDnfz25QeHbugYRscAo");
- NSLog(@"VyrgDhwRpZHn0FsvMJKB");
- NSLog(@"qCkAVg56wPnzUm7yRr2oH");
- NSLog(@"U2Xp3yq0Y7ahR5Glw6ZzPdNBxOurQc1DsLnF");
- }
- -(void)aaHbA1yX:(UIUserInterfaceIdiom*) aaHbA1yX aajmgPY:(UIDocument*) aajmgPY aXqcp:(UIFontWeight*) aXqcp a4bXne:(UIFontWeight*) a4bXne aXgfJyMjv:(UIScreen*) aXgfJyMjv a6VmzxLE:(UIView*) a6VmzxLE a8mXxWD:(UIEvent*) a8mXxWD a3snh6ScTrE:(UIFontWeight*) a3snh6ScTrE aEmPxKM8WDI:(UIBarButtonItem*) aEmPxKM8WDI afDNCp:(UIKeyCommand*) afDNCp ayTQUe4C:(UIWindow*) ayTQUe4C aWd1O9pA:(UIDevice*) aWd1O9pA aBlCx5:(UIControl*) aBlCx5 aAsuxpDq2:(UIViewController*) aAsuxpDq2 ajV1mGHM:(UIFont*) ajV1mGHM a4ePSXRO:(UISwitch*) a4ePSXRO aQk165q:(UISwitch*) aQk165q amtqYFJGp:(UIView*) amtqYFJGp a3v08r:(UIKeyCommand*) a3v08r aJyFo5E13G:(UIButton*) aJyFo5E13G {
- NSLog(@"8RHlreAMjuz7hPJc");
- NSLog(@"pFi6o9Il7kKrAW5");
- NSLog(@"ShD0HUOXrumsVnW6xlJLyT");
- NSLog(@"rJUCk6dG1fFqeAK5IpN0YMgubn");
- NSLog(@"T4MgRy7KwQv8UotFHxNEfr3An");
- NSLog(@"c85az9wExdWR7bsuGQn2kiK4qYp");
- NSLog(@"m4W6Dlf2Txsn3eBiqS");
- NSLog(@"h1mNdIlM7ZWGDaLr0Afn96wpeqCBt5TujO48SXk");
- NSLog(@"hzVfTowUN4Cl9xaJ1RtIrpi");
- NSLog(@"j7swpdvknJFRC5rymlKTA");
- NSLog(@"k58uw46WolPpimQfTGj2HIcNaZrgDdBv0");
- NSLog(@"7s3qLnv1ealKT2AfMNjR4mxBJwPpSku8YbdH0Wi");
- NSLog(@"qO01WPXhjN4I6lMdSKtFsvwYuD");
- NSLog(@"sv7ZQ0WTiY9CglmSaXefELPKGJIutUN");
- NSLog(@"HN8n1tS9qLUz4cfaPvdm0XRQFikl");
- NSLog(@"OCxIZyDJv9zAtopXrfqYwnkUc8Ri231GS7bWmgQd");
- NSLog(@"i0EPnBfLJ9v");
- NSLog(@"naOrk9GoTv0XxqeCd7uyQwZEtmApNzMhSWI");
- }
- -(void)a9a7GE2:(UILabel*) a9a7GE2 aq0zlcSBTo:(UIViewController*) aq0zlcSBTo al3CJZ6vqLo:(UIAlertView*) al3CJZ6vqLo atSiHj8b:(UIInputView*) atSiHj8b aqOXuhF2af:(UIViewController*) aqOXuhF2af axhpWH9:(UIColor*) axhpWH9 {
- NSLog(@"gSwNxGip8yRrWHCjvEVuDh9ZAQda");
- NSLog(@"qgBZbGPp9cDKwveyiH1VQMSL8");
- NSLog(@"PsnxJeCXM4li7IHpNTfcYFBQb8K0ZyGjD5OAm9");
- NSLog(@"VJXji2btmKAvc83a6MSoxrHR9wIeEkQYBsPZ");
- NSLog(@"fPc6krle5ysja3CoXSQE2");
- NSLog(@"x5Oeo6pVgas1L72Phd8S9I3YmC0AcvruiGtjMX");
- NSLog(@"Hr2PUN0jbBO3oFpLIQ6uvzC");
- NSLog(@"RhWCmVY0IU3E1l5etFG8pQrBgAzsyvD6JNXwjbf2");
- NSLog(@"MGOWPHenxdcmFtYvypbIAw96XzJSi");
- NSLog(@"i74WTpAVfUKStO6xbuhIgGm2nD");
- NSLog(@"lweCxAVijEkHRgsLmcYFoJT5n");
- NSLog(@"JkVTCAIu2UnhDXlR3FzSd8o104vgN");
- NSLog(@"n5VzQyhC2ukmbcWjXH4PO7Er9x3d8q");
- NSLog(@"la5mS7gPZXUxrzH");
- NSLog(@"SmpUZfQoK2vaVBJxzhqb4jX9I8t3HROMW0kyec");
- NSLog(@"qaEGrVBh02THeyxXk");
- NSLog(@"Prd5pz73glbskw");
- NSLog(@"02x8qB7TcDwO91QNrt");
- NSLog(@"0ypeswlD759FGdB");
- NSLog(@"pK2O5neQI4j0g3EtGYUhyXdsrwfNB61VA8CW9c");
- }
- -(void)amzIt8:(UISearchBar*) amzIt8 amYxSPh:(UIMenuItem*) amYxSPh aqty6CnF:(UIImageView*) aqty6CnF aM2ZPD:(UIBezierPath*) aM2ZPD auREOmxlCGn:(UIApplication*) auREOmxlCGn avU9gRxqQ:(UIColor*) avU9gRxqQ aqyAY3iJ:(UIMenuItem*) aqyAY3iJ aZ5RC8:(UIButton*) aZ5RC8 aPtDA:(UIAlertView*) aPtDA aJn2e:(UIBezierPath*) aJn2e a8LTmCqWjB:(UIColor*) a8LTmCqWjB aS6gR:(UIFont*) aS6gR ap4Z3o:(UIApplication*) ap4Z3o a8LJebtz:(UIUserInterfaceIdiom*) a8LJebtz aY08mGv:(UIImageView*) aY08mGv a1cqWpN0iK:(UIMotionEffect*) a1cqWpN0iK {
- NSLog(@"pm2A1LWeO5RsY4kBuZvhVUbFJjlT");
- NSLog(@"oZORbsa4xivJft5kC6Iqg3hNQ9SWKu");
- NSLog(@"PbHwGoL9fcpthaFWeBKMUnjYRNZxuz");
- NSLog(@"pnESQ9ZI3y0");
- NSLog(@"6wMgf0y4tNshkqYEjXmbnd1GIQuSc");
- NSLog(@"UK9WfuwHa83odiRQFmnC6NDx");
- NSLog(@"DmPnKuwzCXEs563F0ASU91vrMYTcB");
- NSLog(@"cxWEy7MUiN0pCbOlsFegDoGA");
- NSLog(@"hPoCBebruR");
- NSLog(@"FKJ9bmIWAj21iypczTsq0O");
- NSLog(@"Txnw5ypmua9FBl6gsS7i2ArXVIW");
- NSLog(@"Bq4ko0p925PrjvJneSWilUQKXtRaMgwZ8dA1");
- NSLog(@"4mnw51ZCoHcRijGSUB3usaP2fOFKetbXr8QETl");
- NSLog(@"Xqp4VwNr0H2YSTv6RmD9LkbuOcCjIyf");
- NSLog(@"2raCcWSbNKZ");
- NSLog(@"8zWuRIPKvOnL4skUo");
- NSLog(@"jDOyLukIGMteH01U");
- NSLog(@"H1fmSUgIlD0edQtKkqoWrZh9AaXvT6Fbs5c4VJ");
- }
- -(void)atkh8G:(UIDevice*) atkh8G a7be1tP:(UIButton*) a7be1tP ay4d3u8PQUa:(UIControl*) ay4d3u8PQUa aViYfq:(UIImageView*) aViYfq a5uProSsFLz:(UIRegion*) a5uProSsFLz a7EkhpBCd:(UIImage*) a7EkhpBCd ab27zhxcu:(UIApplication*) ab27zhxcu ar2FDi:(UIImageView*) ar2FDi aAhos9fI:(UIScreen*) aAhos9fI aBesvRH93Y:(UIEvent*) aBesvRH93Y af9N1F:(UIFontWeight*) af9N1F aemDsLjdc:(UIBarButtonItem*) aemDsLjdc aKaVTdYv:(UISearchBar*) aKaVTdYv aRIcG7tiB:(UIBarButtonItem*) aRIcG7tiB {
- NSLog(@"m2iCzLV8Q3UduWPcXOBf4InZDK");
- NSLog(@"YJ7Rs5MjBuCF3fckLqze6mrDb");
- NSLog(@"VHfmbTJZxL0lF3AS6cRQBupPrd8qjh5g7nYCN");
- NSLog(@"F3tcMR8PapqKvnIEzLUxTlB");
- NSLog(@"3g5Uhr4OJApqPDS");
- NSLog(@"ywjOJaEbHNcKYAMrQI");
- NSLog(@"of5wuVUsch6bv82FWIMTy3pxZqEOAKkJ1");
- NSLog(@"72FvQx46kqMbZgmDwUWSad8nCiRVu1K");
- NSLog(@"3YL9VXKx4va7RPA6O1y0sF8I5N");
- NSLog(@"cYBxqvJU0OP8hWaQud2I6Go");
- NSLog(@"SIwg0GMA69mr");
- NSLog(@"QPzc0pvVyKg4Rd9UuqYDnBEawhFtS8rHMxjWOJe");
- NSLog(@"C0FA3eXaKIm1vjcl4VdfBLgOniMu");
- NSLog(@"mY8D7ChwISAzrc1dX0ngMFaKk");
- }
- -(void)aSOCWw7V:(UIDevice*) aSOCWw7V aGYO5d:(UIBarButtonItem*) aGYO5d avUJfV:(UIViewController*) avUJfV a1edqD:(UIEvent*) a1edqD aUckSbt:(UILabel*) aUckSbt a5Av97zlJ:(UISwitch*) a5Av97zlJ aR7U28a9:(UIFont*) aR7U28a9 aLGDE:(UIVisualEffectView*) aLGDE aVz08v:(UIFontWeight*) aVz08v atMe9:(UIButton*) atMe9 agfji2U:(UIMotionEffect*) agfji2U aiEN9B6G4:(UISearchBar*) aiEN9B6G4 aL1Zn6SQ:(UIEdgeInsets*) aL1Zn6SQ axAld8YkLp:(UIFont*) axAld8YkLp aABeDg6o31S:(UIInputView*) aABeDg6o31S aRfGtSnYo:(UIControlEvents*) aRfGtSnYo aoCy09f7MxX:(UICollectionView*) aoCy09f7MxX axXyc:(UIUserInterfaceIdiom*) axXyc aR4OhNc:(UIEvent*) aR4OhNc a8Pqn:(UIFontWeight*) a8Pqn {
- NSLog(@"8TpbzlMXWtdmH0k9hgPYox");
- NSLog(@"EovxFUk8590bYuIVy4c2PDR7KTLS3");
- NSLog(@"asMuhCpzNWZEL7e0yrdFb");
- NSLog(@"7Q9uDRO8qFCSGBZlm53");
- NSLog(@"S61cwv7rPGHtl9EAU3KL5f");
- NSLog(@"oUyWZ9g1GR8h6iXKCBknaOpEtm4drH3FJ");
- NSLog(@"ClEq2wvrcMpdnmtQAOjiVH1NZ");
- NSLog(@"24sz6ywWCquHoUYJvlBPKpIga");
- NSLog(@"usyUa3FLlNkvJDx0iZRqrYOId2e8WH9p5BfM");
- NSLog(@"jTb0w3ghSXVk9Zz4dFQl5Hq7uf1COUeBKaD");
- NSLog(@"DCUbNY5zxVaJFTscK1GmXjrfW0Eyi");
- NSLog(@"K5FqHPjLb3JWmaopl2AnN6s41u9IUYD7TSc");
- NSLog(@"ioR9t4MNQarUsSXgFG0Bp6zubj");
- NSLog(@"kyrOoZfxhSjqWU4n80tcG5V2ieu3XKA1gzRFYP");
- NSLog(@"Jdeo9ykps1I4DvmBSXg");
- }
- -(void)ap4Yh:(UIButton*) ap4Yh aA6lbRpX7:(UIMenuItem*) aA6lbRpX7 aAK60gn3:(UIBarButtonItem*) aAK60gn3 aaoqV2uK:(UIControlEvents*) aaoqV2uK aL5bCtRBU7:(UIViewController*) aL5bCtRBU7 arD5LSG:(UIImageView*) arD5LSG aUnfqw:(UIScreen*) aUnfqw a5zuJQGN4E:(UIApplication*) a5zuJQGN4E aFelGyWX5QM:(UIControl*) aFelGyWX5QM aM71l:(UIVisualEffectView*) aM71l aONfh5sF:(UIView*) aONfh5sF aTOkQ:(UIAlertView*) aTOkQ aMS2NaKiDB:(UILabel*) aMS2NaKiDB abPGL:(UIEdgeInsets*) abPGL agIHO:(UIWindow*) agIHO amtEbPlHwBd:(UIDevice*) amtEbPlHwBd a1rBIsR3:(UIEvent*) a1rBIsR3 ayTRvIs:(UIAlertView*) ayTRvIs apmLybwY48Q:(UIUserInterfaceIdiom*) apmLybwY48Q {
- NSLog(@"a6vz7qjgbGscVZPB5fFl");
- NSLog(@"5qpjlZuHWGxURAT4CL0OPQKmdcMr");
- NSLog(@"B46DSVpg2yv5Oe3");
- NSLog(@"UhdmsblePgOzry4uwq5T8tnSEoj37");
- NSLog(@"4gMQ5q3fZBRXTsNy7DVWlcmbopaFHC0kjOn8L");
- NSLog(@"izFZ2ebjgCDhH3SP5ycw9sOonB84QTUtRJWfaMGA");
- NSLog(@"fMpQIh9jbBdygC80uesJX");
- NSLog(@"RybYuD51PJegM8j2NkOr4pdLhvIZasS09n");
- NSLog(@"rbWCKTjsFV5n8NDqIdeEMUt2xy9LO");
- NSLog(@"PlfU4ydH7eqRQp6wrVSWcF");
- NSLog(@"pCyezLJVD7X9QgEmAI6");
- NSLog(@"FmvXWZphsoOtNVj31dkcKbEwyQ");
- NSLog(@"GVC24QrP3d9zUYhxDEj6f8BimeOtucM");
- NSLog(@"lvEgOKhkb2nU3Gji8Hsu");
- NSLog(@"BoXuUJ2e7cDLW");
- }
- -(void)aiXMhG3eDEN:(UIRegion*) aiXMhG3eDEN a80x4H:(UILabel*) a80x4H aClqOdiUP:(UISwitch*) aClqOdiUP alA1HozF:(UIWindow*) alA1HozF a84YcJeWX:(UIBarButtonItem*) a84YcJeWX {
- NSLog(@"YCmOzpPKh31GkyLJEXoqvDUrtS0");
- NSLog(@"CQ64pjWTMLr");
- NSLog(@"jAIGnCyxEaW5r3X4tTLNlYgO8Zo");
- NSLog(@"6mPCASls4jeGEthBJQxZ23Hypa");
- NSLog(@"69VXBNfirK0lu4dkxHD3ZjGLRFY8");
- NSLog(@"3B9vK4VphlNTQ");
- NSLog(@"sqknF9PldTKOzpIoS52J0XtQxUh4CyWaEucRYeg");
- NSLog(@"STsa3WXlLbeNGK4rgZQUpi8u12nkchY0vto9qBx6");
- NSLog(@"fc4b1Uzkpvtugw3DO0Ss8TiX6rqoxQBCdW5LFRZY");
- NSLog(@"kLhNIvDcgzuawObQtPVy");
- NSLog(@"yuWDmY5abw6Lv1IesR0V9UOHf");
- NSLog(@"1mxKLHUXA3q6");
- NSLog(@"QYZ3DfITw5KNmGSks0M4Cu");
- NSLog(@"hlYZOpMfGDCLbgjBxaHvUVk9");
- NSLog(@"TUJAn8Dcw6d1fkEsbRFyB0GKt7rMQY");
- NSLog(@"VFmfHvRUcrz4SiEwpGhu6Oj1AoQMNTLaYk");
- NSLog(@"3xZjqnrhWGOebIzg256yv8aLAoSK");
- NSLog(@"95UMJ2yw0LkNWV6vEfOF37IZuBs");
- NSLog(@"FIgdkBat9mwoh2iKDqxAs45WJ6e");
- }
- -(void)aFbdGVeD:(UIFontWeight*) aFbdGVeD anXadKcwtR:(UIWindow*) anXadKcwtR aOCtzZNKP:(UICollectionView*) aOCtzZNKP aBE3Z:(UIApplication*) aBE3Z avRlqI0:(UIAlertView*) avRlqI0 aEiLBtTfC:(UIColor*) aEiLBtTfC aIRUmM8nPVy:(UIDocument*) aIRUmM8nPVy aUmjX:(UIWindow*) aUmjX {
- NSLog(@"PtdOfTNw8BAC2X0cFJpsqIRrae34z7iMDLbZUu");
- NSLog(@"ELHN63byZh9ud");
- NSLog(@"1TGUAptMOsrNzq");
- NSLog(@"HTZKEIiol7b4");
- NSLog(@"3ds2VMy9GNf4CqnOmuk1ZgKFxD8liTaW");
- NSLog(@"ykKehCXRfm7n0ErqasL5I68SDNd4Qbg2");
- NSLog(@"uq5Rtcnve6S2lMzjgYZ3CWBO1wk4L7EQJ9iVPDhf");
- NSLog(@"jfH5zkQAyF0J71x9h4ovsYPqZUeLRWTgwaniCOX");
- NSLog(@"qwT4i3g7CvNEtJ8AuoRsDx6ch0WQZ9aKbU5mLXp");
- NSLog(@"VzRx14WQkPha5ivl9mFso");
- }
- @end
|