浏览代码

remove library (unnecessary)

Marino Faggiana 7 年之前
父节点
当前提交
ff31744db5

+ 0 - 17
Libraries external/PPImageScrollingTableViewCell/PPCollectionViewCell.h

@@ -1,17 +0,0 @@
-//
-//  PPCollectionViewCell.h
-//  PPImageScrollingTableViewControllerDemo
-//
-//  Created by popochess on 13/8/10.
-//  Copyright (c) 2013年 popochess. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-@interface PPCollectionViewCell : UICollectionViewCell
-
-- (void)setImage:(UIImage*) image;
-- (void)setTitle:(NSString*) title;
-- (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height;
-- (void) setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor;
-@end

+ 0 - 71
Libraries external/PPImageScrollingTableViewCell/PPCollectionViewCell.m

@@ -1,71 +0,0 @@
-//
-//  PPCollectionViewCell.m
-//  PPImageScrollingTableViewControllerDemo
-//
-//  Created by popochess on 13/8/10.
-//  Copyright (c) 2013年 popochess. All rights reserved.
-//
-
-#import "PPCollectionViewCell.h"
-
-@interface PPCollectionViewCell ()
-
-@property (strong, nonatomic) UIImageView *imageView;
-@property (strong, nonatomic) UITextView *imageTitle;
-
-@end
-
-@implementation PPCollectionViewCell
-
-- (id)initWithFrame:(CGRect)frame
-{
-    self = [super initWithFrame:frame];
-    if (self) {
-        // Initialization code
-        self.imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0., 0., frame.size.width, frame.size.height)];
-    }
-    return self;
-}
-
--(void)setImage:(UIImage *)image
-{
-    self.imageView.image = image;
-}
-
-- (void)setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height
-{
-    self.imageTitle = [[UITextView alloc] initWithFrame:CGRectMake(0., _imageView.frame.size.height/2+5, width,height)];
-    self.imageTitle.contentInset = UIEdgeInsetsMake(1,1,1,1);
-    self.imageTitle.userInteractionEnabled = NO;
-}
-
-- (void)setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor
-{
-    self.imageTitle.textColor = textColor;
-    self.imageTitle.backgroundColor = bgColor;
-}
-
-- (void)setTitle:(NSString*)title ;
-{
-    if ([self.contentView subviews]){
-        for (UILabel *subview in [self.contentView subviews]) {
-            [subview removeFromSuperview];
-        }
-    }
-    [self.contentView addSubview:self.imageView];
-
-    self.imageTitle.text = title;
-    [self.contentView addSubview:self.imageTitle];
-    
-}
-
-/*
-// Only override drawRect: if you perform custom drawing.
-// An empty implementation adversely affects performance during animation.
-- (void)drawRect:(CGRect)rect
-{
-    // Drawing code
-}
-*/
-
-@end

+ 0 - 28
Libraries external/PPImageScrollingTableViewCell/PPImageScrollingCellView.h

@@ -1,28 +0,0 @@
-//
-//  PPImageScrollingCellView.h
-//  PPImageScrollingTableViewDemo
-//
-//  Created by popochess on 13/8/9.
-//  Copyright (c) 2013年 popochess. All rights reserved.
-//
-#import <UIKit/UIKit.h>
-
-@class PPImageScrollingCellView;
-
-@protocol PPImageScrollingViewDelegate <NSObject>
-
-- (void)collectionView:(PPImageScrollingCellView *)collectionView didSelectImageItemAtIndexPath:(NSIndexPath*)indexPath;
-
-@end
-
-
-@interface PPImageScrollingCellView : UIView
-
-@property (weak, nonatomic) id<PPImageScrollingViewDelegate> delegate;
-
-- (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height;
-- (void) setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor;
-- (void) setImageData:(NSArray*)collectionImageData;
-- (void) setBackgroundColor:(UIColor*)color;
-
-@end

+ 0 - 111
Libraries external/PPImageScrollingTableViewCell/PPImageScrollingCellView.m

@@ -1,111 +0,0 @@
-//
-//  PPImageScrollingCellView.m
-//  PPImageScrollingTableViewDemo
-//
-//  Created by popochess on 13/8/9.
-//  Copyright (c) 2013年 popochess. All rights reserved.
-//
-
-#import "PPImageScrollingCellView.h"
-#import "PPCollectionViewCell.h"
-
-@interface  PPImageScrollingCellView () <UICollectionViewDataSource, UICollectionViewDelegate>
-
-@property (strong, nonatomic) PPCollectionViewCell *myCollectionViewCell;
-@property (strong, nonatomic) UICollectionView *myCollectionView;
-@property (strong, nonatomic) NSArray *collectionImageData;
-@property (nonatomic) CGFloat imagetitleWidth;
-@property (nonatomic) CGFloat imagetitleHeight;
-@property (strong, nonatomic) UIColor *imageTilteBackgroundColor;
-@property (strong, nonatomic) UIColor *imageTilteTextColor;
-
-
-@end
-
-@implementation PPImageScrollingCellView
-
-- (id)initWithFrame:(CGRect)frame
-{
-     self = [super initWithFrame:frame];
-    
-    if (self) {
-        // Initialization code
-
-        /* Set flowLayout for CollectionView*/
-        UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
-        flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
-        flowLayout.itemSize = CGSizeMake(100.0, 110.0);
-        flowLayout.sectionInset = UIEdgeInsetsMake(5, 10, 5, 10);
-        flowLayout.minimumLineSpacing = 10;
-
-        /* Init and Set CollectionView */
-        self.myCollectionView = [[UICollectionView alloc] initWithFrame:self.bounds collectionViewLayout:flowLayout];
-        self.myCollectionView.delegate = self;
-        self.myCollectionView.dataSource = self;
-        self.myCollectionView.showsHorizontalScrollIndicator = NO;
-
-        [self.myCollectionView registerClass:[PPCollectionViewCell class] forCellWithReuseIdentifier:@"PPCollectionCell"];
-        [self addSubview:_myCollectionView];
-    }
-    return self;
-}
-
-- (void) setImageData:(NSArray*)collectionImageData{
-
-    _collectionImageData = collectionImageData;
-    [_myCollectionView reloadData];
-}
-
-- (void) setBackgroundColor:(UIColor*)color{
-
-    self.myCollectionView.backgroundColor = color;
-    [_myCollectionView reloadData];
-}
-
-- (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height{
-    _imagetitleWidth = width;
-    _imagetitleHeight = height;
-}
-- (void) setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor{
-    
-    _imageTilteTextColor = textColor;
-    _imageTilteBackgroundColor = bgColor;
-}
-
-#pragma mark - UICollectionViewDataSource methods
-
-- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
-    return 1;
-}
-
-- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
-    return [self.collectionImageData count];
-}
-
-- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
-{    
-    PPCollectionViewCell *cell = (PPCollectionViewCell*)[collectionView dequeueReusableCellWithReuseIdentifier:@"PPCollectionCell" forIndexPath:indexPath];
-    NSDictionary *imageDic = [self.collectionImageData objectAtIndex:[indexPath row]];
-    
-    [cell setImage:[UIImage imageNamed:[imageDic objectForKey:@"name"]]];
-    [cell setImageTitleLabelWitdh:_imagetitleWidth withHeight:_imagetitleHeight];
-    [cell setImageTitleTextColor:_imageTilteTextColor withBackgroundColor:_imageTilteBackgroundColor];
-    [cell setTitle:[imageDic objectForKey:@"title"]];
-    return cell;
-}
-
-- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
-    
-    [self.delegate collectionView:self didSelectImageItemAtIndexPath:(NSIndexPath*)indexPath];
-}
-
-/*
-// Only override drawRect: if you perform custom drawing.
-// An empty implementation adversely affects performance during animation.
-- (void)drawRect:(CGRect)rect
-{
-    // Drawing code
-}
-*/
-
-@end

+ 0 - 30
Libraries external/PPImageScrollingTableViewCell/PPImageScrollingTableViewCell.h

@@ -1,30 +0,0 @@
-//
-//  PPScrollingTableViewCell.h
-//  PPImageScrollingTableViewControllerDemo
-//
-//  Created by popochess on 13/8/10.
-//  Copyright (c) 2013年 popochess. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-@class PPImageScrollingTableViewCell;
-
-@protocol PPImageScrollingTableViewCellDelegate <NSObject>
-
-// Notifies the delegate when user click image
-- (void)scrollingTableViewCell:(PPImageScrollingTableViewCell *)scrollingTableViewCell didSelectImageAtIndexPath:(NSIndexPath*)indexPathOfImage atCategoryRowIndex:(NSInteger)categoryRowIndex;
-
-@end
-
-@interface PPImageScrollingTableViewCell : UITableViewCell
-
-@property (weak, nonatomic) id<PPImageScrollingTableViewCellDelegate> delegate;
-@property (nonatomic) CGFloat height;
-
-- (void) setImageData:(NSDictionary*) image;
-- (void) setCollectionViewBackgroundColor:(UIColor*) color;
-- (void) setCategoryLabelText:(NSString*)text withColor:(UIColor*)color;
-- (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height;
-- (void) setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor;
-
-@end

+ 0 - 101
Libraries external/PPImageScrollingTableViewCell/PPImageScrollingTableViewCell.m

@@ -1,101 +0,0 @@
-//
-//  PPScrollingTableViewCell.m
-//  PPImageScrollingTableViewControllerDemo
-//
-//  Created by popochess on 13/8/10.
-//  Copyright (c) 2013年 popochess. All rights reserved.
-//
-
-#import "PPImageScrollingTableViewCell.h"
-#import "PPImageScrollingCellView.h"
-
-#define kScrollingViewHieght 120
-#define kCategoryLabelWidth 200
-#define kCategoryLabelHieght 30
-#define kStartPointY 30
-
-@interface PPImageScrollingTableViewCell() <PPImageScrollingViewDelegate>
-
-@property (strong,nonatomic) UIColor *categoryTitleColor;
-@property(strong, nonatomic) PPImageScrollingCellView *imageScrollingView;
-@property (strong, nonatomic) NSString *categoryLabelText;
-
-@end
-
-@implementation PPImageScrollingTableViewCell
-
-- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
-{
-    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
-    if (self) {
-        // Initialization code
-        
-        [self initialize];
-    }
-    return self;
-}
-
-- (void)awakeFromNib
-{
-    [super awakeFromNib];
-    [self initialize];
-}
-
-- (void)initialize
-{
-    // Set ScrollImageTableCellView
-    _imageScrollingView = [[PPImageScrollingCellView alloc] initWithFrame:CGRectMake(0., kStartPointY, 320., kScrollingViewHieght)];
-    _imageScrollingView.delegate = self;
-}
-
-- (void)setSelected:(BOOL)selected animated:(BOOL)animated
-{
-    [super setSelected:selected animated:animated];    
-    // Configure the view for the selected state
-}
-
-- (void)setImageData:(NSDictionary*)collectionImageData
-{
-    [_imageScrollingView setImageData:[collectionImageData objectForKey:@"images"]];
-    _categoryLabelText = [collectionImageData objectForKey:@"category"];
-}
-
-- (void)setCategoryLabelText:(NSString*)text withColor:(UIColor*)color{
-    
-    if ([self.contentView subviews]){
-        for (UIView *subview in [self.contentView subviews]) {
-            [subview removeFromSuperview];
-        }
-    }
-    UILabel *categoryTitle = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, kCategoryLabelWidth, kCategoryLabelHieght)];
-    categoryTitle.textAlignment = NSTextAlignmentLeft;
-    categoryTitle.text = text;
-    categoryTitle.textColor = color;
-    categoryTitle.backgroundColor = [UIColor clearColor];
-    [self.contentView addSubview:categoryTitle];
-}
-    
-- (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height {
-
-    [_imageScrollingView setImageTitleLabelWitdh:width withHeight:height];
-}
-
-- (void) setImageTitleTextColor:(UIColor *)textColor withBackgroundColor:(UIColor *)bgColor{
-
-    [_imageScrollingView setImageTitleTextColor:textColor withBackgroundColor:bgColor];
-}
-
-- (void)setCollectionViewBackgroundColor:(UIColor *)color{
-    
-    _imageScrollingView.backgroundColor = color;
-    [self.contentView addSubview:_imageScrollingView];
-}
-
-#pragma mark - PPImageScrollingViewDelegate
-
-- (void)collectionView:(PPImageScrollingCellView *)collectionView didSelectImageItemAtIndexPath:(NSIndexPath*)indexPath {
-
-    [self.delegate scrollingTableViewCell:self didSelectImageAtIndexPath:indexPath atCategoryRowIndex:self.tag];
-}
-
-@end

+ 8 - 32
Nextcloud.xcodeproj/project.pbxproj

@@ -111,11 +111,8 @@
 		F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
 		F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
 		F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
-		F71459FB1D12E3B700CAFEEC /* PPImageScrollingCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */; };
 		F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
 		F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
-		F7145A081D12E3B700CAFEEC /* PPCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */; };
-		F7145A111D12E3B700CAFEEC /* PPImageScrollingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */; };
 		F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
 		F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
 		F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
@@ -326,18 +323,15 @@
 		F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
 		F77B0E631D118A16002130FE /* CCShareOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */; };
 		F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
-		F77B0E731D118A16002130FE /* PPImageScrollingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */; };
 		F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
 		F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
 		F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
-		F77B0E991D118A16002130FE /* PPCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */; };
 		F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
 		F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
 		F77B0EAD1D118A16002130FE /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
 		F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
 		F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
 		F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
-		F77B0ED31D118A16002130FE /* PPImageScrollingCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */; };
 		F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
 		F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
 		F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
@@ -749,12 +743,6 @@
 		F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
 		F70F04831C889183008DAB36 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
 		F70F04841C889183008DAB36 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
-		F70F051E1C889184008DAB36 /* PPCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCollectionViewCell.h; sourceTree = "<group>"; };
-		F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPCollectionViewCell.m; sourceTree = "<group>"; };
-		F70F05201C889184008DAB36 /* PPImageScrollingCellView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPImageScrollingCellView.h; sourceTree = "<group>"; };
-		F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPImageScrollingCellView.m; sourceTree = "<group>"; };
-		F70F05221C889184008DAB36 /* PPImageScrollingTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPImageScrollingTableViewCell.h; sourceTree = "<group>"; };
-		F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPImageScrollingTableViewCell.m; sourceTree = "<group>"; };
 		F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
 		F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
 		F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
@@ -1756,7 +1744,6 @@
 				F70F04821C889183008DAB36 /* MBProgressHUD */,
 				F7DC5FD31F00F98B00A903C7 /* MGSwipeTableCell */,
 				F7540EE11D5B238600C3FFA8 /* openssl */,
-				F70F051D1C889184008DAB36 /* PPImageScrollingTableViewCell */,
 				F75037421DBFA91A008FB480 /* PureLayout */,
 				F70F05241C889184008DAB36 /* Reachability */,
 				F7DFE24E1EBDC3A400CF5202 /* Realm */,
@@ -1785,19 +1772,6 @@
 			path = MBProgressHUD;
 			sourceTree = "<group>";
 		};
-		F70F051D1C889184008DAB36 /* PPImageScrollingTableViewCell */ = {
-			isa = PBXGroup;
-			children = (
-				F70F051E1C889184008DAB36 /* PPCollectionViewCell.h */,
-				F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */,
-				F70F05201C889184008DAB36 /* PPImageScrollingCellView.h */,
-				F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */,
-				F70F05221C889184008DAB36 /* PPImageScrollingTableViewCell.h */,
-				F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */,
-			);
-			path = PPImageScrollingTableViewCell;
-			sourceTree = "<group>";
-		};
 		F70F05241C889184008DAB36 /* Reachability */ = {
 			isa = PBXGroup;
 			children = (
@@ -3490,7 +3464,6 @@
 				F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
 				F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */,
 				F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
-				F71459FB1D12E3B700CAFEEC /* PPImageScrollingCellView.m in Sources */,
 				F70022A81EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
 				F70022AB1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
 				F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */,
@@ -3502,12 +3475,10 @@
 				F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
 				F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
 				F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */,
-				F7145A081D12E3B700CAFEEC /* PPCollectionViewCell.m in Sources */,
 				F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */,
 				F72756731F7153FC0011E2FC /* NCClientEncryption.m in Sources */,
 				F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
 				F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
-				F7145A111D12E3B700CAFEEC /* PPImageScrollingTableViewCell.m in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -3803,7 +3774,6 @@
 				F7D424571F063B82009C9782 /* PHAsset+CTAssetsPickerController.m in Sources */,
 				F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
 				F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
-				F77B0E731D118A16002130FE /* PPImageScrollingTableViewCell.m in Sources */,
 				F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */,
 				F7D423861F0596C6009C9782 /* ReaderThumbRequest.m in Sources */,
 				F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */,
@@ -3826,7 +3796,6 @@
 				F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */,
 				F7D424741F063B82009C9782 /* CTAssetThumbnailView.m in Sources */,
 				F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
-				F77B0E991D118A16002130FE /* PPCollectionViewCell.m in Sources */,
 				F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */,
 				F70022AD1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
 				F7D424531F063B82009C9782 /* NSBundle+CTAssetsPickerController.m in Sources */,
@@ -3902,7 +3871,6 @@
 				F7D423841F0596C6009C9782 /* ReaderThumbQueue.m in Sources */,
 				F7A3217A1E9E3EAF0069AD1B /* CCTransfersCell.m in Sources */,
 				F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
-				F77B0ED31D118A16002130FE /* PPImageScrollingCellView.m in Sources */,
 				F7D4245A1F063B82009C9782 /* UICollectionView+CTAssetsPickerController.m in Sources */,
 				F7D4245B1F063B82009C9782 /* UIImage+CTAssetsPickerController.m in Sources */,
 				F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
@@ -4140,6 +4108,7 @@
 				APPLICATION_EXTENSION_API_ONLY = NO;
 				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
 				CLANG_ENABLE_MODULES = YES;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -4185,6 +4154,7 @@
 				APPLICATION_EXTENSION_API_ONLY = NO;
 				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
 				CLANG_ENABLE_MODULES = YES;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -4228,6 +4198,7 @@
 				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
 				CLANG_ANALYZER_NONNULL = YES;
 				CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Picker.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -4267,6 +4238,7 @@
 				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
 				CLANG_ANALYZER_NONNULL = YES;
 				CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Picker.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -4305,6 +4277,7 @@
 				CLANG_ANALYZER_NONNULL = YES;
 				CLANG_ENABLE_MODULES = YES;
 				CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/PickerFileProvider.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -4345,6 +4318,7 @@
 				CLANG_ANALYZER_NONNULL = YES;
 				CLANG_ENABLE_MODULES = YES;
 				CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/PickerFileProvider.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -4383,6 +4357,7 @@
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
 				CLANG_ENABLE_MODULES = YES;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
 				CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -4431,6 +4406,7 @@
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
 				CLANG_ENABLE_MODULES = YES;
+				CLANG_WARN_STRICT_PROTOTYPES = NO;
 				CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
 				CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";