gitextract_3whcw96j/ ├── .gitignore ├── .travis.yml ├── KeepGuidePage/ │ ├── Account(账号)/ │ │ └── Controller/ │ │ ├── LoginViewController.h │ │ ├── LoginViewController.m │ │ ├── RegisterViewController.h │ │ └── RegisterViewController.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Find(发现)/ │ │ └── Controller/ │ │ ├── KeepFindViewController.h │ │ └── KeepFindViewController.m │ ├── Follow(关注)/ │ │ └── Controller/ │ │ ├── KeepFollowViewController.h │ │ └── KeepFollowViewController.m │ ├── Images.xcassets/ │ │ ├── 3DTouch/ │ │ │ ├── .svn/ │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base/ │ │ │ │ └── Contents.json.svn-base │ │ │ ├── Contents.json │ │ │ ├── fx_3DTouch_AdorableStar.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── fx_3DTouch_Receipt_of_goods.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── fx_3DTouch_Search_brand.imageset/ │ │ │ │ └── Contents.json │ │ │ └── fx_3DTouch_Star_Ticket.imageset/ │ │ │ └── Contents.json │ │ ├── Account/ │ │ │ ├── Contents.json │ │ │ ├── qq.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── qq_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── wechat.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── wechat_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── weico.imageset/ │ │ │ │ └── Contents.json │ │ │ └── weico_light.imageset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Brand Assets.launchimage/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Find/ │ │ │ ├── Contents.json │ │ │ ├── discovery.imageset/ │ │ │ │ └── Contents.json │ │ │ └── discovery_on.imageset/ │ │ │ └── Contents.json │ │ ├── Follow/ │ │ │ ├── Contents.json │ │ │ ├── trends.imageset/ │ │ │ │ └── Contents.json │ │ │ └── trends_on.imageset/ │ │ │ └── Contents.json │ │ ├── Navigation/ │ │ │ ├── Contents.json │ │ │ ├── back.imageset/ │ │ │ │ └── Contents.json │ │ │ └── backbtn.imageset/ │ │ │ └── Contents.json │ │ ├── NewFeature/ │ │ │ ├── Contents.json │ │ │ └── keep.imageset/ │ │ │ └── Contents.json │ │ ├── PersonalCenter/ │ │ │ ├── Contents.json │ │ │ ├── personal.imageset/ │ │ │ │ └── Contents.json │ │ │ └── personal_on.imageset/ │ │ │ └── Contents.json │ │ └── Train/ │ │ ├── Contents.json │ │ ├── train.imageset/ │ │ │ └── Contents.json │ │ └── train_on.imageset/ │ │ └── Contents.json │ ├── Info.plist │ ├── Main(主要)/ │ │ └── Controller/ │ │ ├── KeepNavigationViewController.h │ │ ├── KeepNavigationViewController.m │ │ ├── KeepNewFeatureViewController.h │ │ ├── KeepNewFeatureViewController.m │ │ ├── KeepTabBarViewController.h │ │ └── KeepTabBarViewController.m │ ├── NewFeatrue(新特性)/ │ │ └── View/ │ │ ├── KeepAdLabel.h │ │ ├── KeepAdLabel.m │ │ ├── KeepAdScrollView.h │ │ ├── KeepAdScrollView.m │ │ ├── KeepNewFeatrueView.h │ │ └── KeepNewFeatrueView.m │ ├── PersonalCenter(个人中心)/ │ │ └── Controller/ │ │ ├── KeepPersonalViewController.h │ │ └── KeepPersonalViewController.m │ ├── Public(公共库)/ │ │ ├── Category/ │ │ │ ├── NSString+Extension.h │ │ │ ├── NSString+Extension.m │ │ │ ├── UIBarButtonItem+Extension.h │ │ │ ├── UIBarButtonItem+Extension.m │ │ │ ├── UIColor+Extension.h │ │ │ ├── UIColor+Extension.m │ │ │ ├── UILabel+Extension.h │ │ │ ├── UILabel+Extension.m │ │ │ ├── UIView+Extension.h │ │ │ └── UIView+Extension.m │ │ ├── CustomView/ │ │ │ ├── KeepCancelHighlightButton.h │ │ │ └── KeepCancelHighlightButton.m │ │ ├── MYCollectionViewStreamLineFlowLayout/ │ │ │ ├── MYCollectionViewStreamLineFlowLayout.h │ │ │ ├── MYCollectionViewStreamLineFlowLayout.m │ │ │ ├── MYGroupIssueLabelCell.h │ │ │ └── MYGroupIssueLabelCell.m │ │ └── Other/ │ │ ├── Constant.h │ │ └── Constant.m │ ├── Train(训练)/ │ │ └── Controller/ │ │ ├── KeepTrainViewController.h │ │ └── KeepTrainViewController.m │ └── main.m ├── KeepGuidePage.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── KeepGuidePage.xcscheme ├── KeepGuidePageTests/ │ ├── Info.plist │ └── KeepGuidePageTests.m ├── KeepGuidePageUITests/ │ ├── Info.plist │ └── KeepGuidePageUITests.m └── README.md