All Projects → monofire → Ftfoldingpaper

monofire / Ftfoldingpaper

Licence: mit
UI framework to emulate paper folding effects.

Projects that are alternatives of or similar to Ftfoldingpaper

Dttableviewmanager
Protocol-oriented UITableView management, powered by generics and associated types.
Stars: ✭ 424 (+1362.07%)
Mutual labels:  uitableview
Tysnapshotscroll
一句代码保存截图,将 UIScrollView UITableView UICollectionView UIWebView WKWebView 网页 保存 为 长图 查看。Save the scroll view page as an image,support UIScrollView,UITableView,UICollectionView,UIWebView,WKWebView.(Support iOS13)
Stars: ✭ 709 (+2344.83%)
Mutual labels:  uitableview
Multipletimers
Stars: ✭ 24 (-17.24%)
Mutual labels:  uitableview
Emptydataset Swift
🎄 DZNEmptyDataSet implement with Swift.A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display. DZNEmptyDataSet with Swift.
Stars: ✭ 443 (+1427.59%)
Mutual labels:  uitableview
Swipecellkit
A swipeable UITableViewCell or UICollectionViewCell with support for:
Stars: ✭ 5,745 (+19710.34%)
Mutual labels:  uitableview
Viewanimator
ViewAnimator brings your UI to life with just one line
Stars: ✭ 6,592 (+22631.03%)
Mutual labels:  uitableview
Mbtwitterscroll
Recreate Twitter's profile page scrolling animation for UITableView and UIScrollViews.
Stars: ✭ 421 (+1351.72%)
Mutual labels:  uitableview
Rhhorizontaltableview
UITableView subclass that scrolls horizontally instead of vertically.
Stars: ✭ 26 (-10.34%)
Mutual labels:  uitableview
Gltablecollectionview
Netflix and App Store like UITableView with UICollectionView, written in pure Swift 4.2
Stars: ✭ 709 (+2344.83%)
Mutual labels:  uitableview
Swiftyform
iOS framework for creating forms
Stars: ✭ 907 (+3027.59%)
Mutual labels:  uitableview
Tableviewdragger
A cells of UITableView can be rearranged by drag and drop.
Stars: ✭ 469 (+1517.24%)
Mutual labels:  uitableview
Tablekit
Type-safe declarative table views.
Stars: ✭ 567 (+1855.17%)
Mutual labels:  uitableview
Changeset
Minimal edits from one collection to another
Stars: ✭ 807 (+2682.76%)
Mutual labels:  uitableview
Mylinearlayout
MyLayout is a powerful iOS UI framework implemented by Objective-C. It integrates the functions with Android Layout,iOS AutoLayout,SizeClass, HTML CSS float and flexbox and bootstrap. So you can use LinearLayout,RelativeLayout,FrameLayout,TableLayout,FlowLayout,FloatLayout,PathLayout,GridLayout,LayoutSizeClass to build your App 自动布局 UIView UITab…
Stars: ✭ 4,152 (+14217.24%)
Mutual labels:  uitableview
Cascadingtabledelegate
A no-nonsense way to write cleaner UITableViewDelegate and UITableViewDataSource in Swift.
Stars: ✭ 931 (+3110.34%)
Mutual labels:  uitableview
Owl
A declarative type-safe framework for building fast and flexible lists with UITableViews & UICollectionViews
Stars: ✭ 423 (+1358.62%)
Mutual labels:  uitableview
Flix
iOS reusable form library in Swift.
Stars: ✭ 725 (+2400%)
Mutual labels:  uitableview
Uitableview Mdkautolayoutheight
A high performance, low invasive height calculation and Cache Tool for UITableview better than FDTemplateLayoutCell
Stars: ✭ 14 (-51.72%)
Mutual labels:  uitableview
Thinningcoordinator
The UITableView/UICollectionView dataSource/delegate thinning coordinator, help thinning your UIViewController!
Stars: ✭ 25 (-13.79%)
Mutual labels:  uitableview
Brflabbytable
Bouncy and distorded table view cells, available on Cocoapods
Stars: ✭ 824 (+2741.38%)
Mutual labels:  uitableview

FTFoldingPaper

Build Status Version License Platform

FTFoldingPaper is a UI framework built on top of the Core Animation. It is designed to emulate paper folding effects and can be integrated with UITableView, used independently or paired with other UI components.

ftfoldingpaperexample

How To Get Started

  • Download FTFoldingPaper and try it out.
  • Install FTFoldingPaper to your project using CocoaPods.
  • Follow instructions below.

Installation with CocoaPods

CocoaPods is a dependency manager, which automates and simplifies the process of using 3rd-party libraries like FTFoldingPaper in your projects.

You can install CocoaPods with the following command:

$ sudo gem install cocoapods

Then execute:

$ cd <path to your project folder>
$ pod init

Open pod file for edit with Xcode or another editor:

$ open -a Xcode podfile

Add the following text under "target 'your project name' do" line:

pod 'FTFoldingPaper'

Finally, execute:

$ pod install

You're done! Now open your project by clicking on the newly created xcworkspace file.

Architecture:

ftfoldingpaperstructure

Paper folding animation:
FTFoldComponent
FTAnimationView
FTAnimationContext
FTParentLayerAnimations
FTFoldComponentAnimations
FTFoldComponentGradientAnimations

Integration with UITableView:
FTViewController
FTTableModel
FTTableCellMetadata
FTTableView
FTTableCell
FTTableCellSeparator

Usage:

  1. Create xibs of the top and bottom layers for all your fold components.
    Note that each fold component requires top and bottom layers.

    1.1 Press '⌘ + N'. Select "User Interface" -> "View"
    1.2 Open and edit each xib according to your needs: (add UI components, setup Autolayout).
    1.3 Create data model object to manage UI components of your layer, if any required.

  2. Subclass and configure FTAnimationView with FTFoldComponents and FTAnimationContext.

FTAnimationView hosts fold components and manages animation. Animation process is configured with FTAnimationContext

Override the next two methods in FTAnimationView:

/* example of animation view with 2 fold components*/
-(NSArray *)submitFoldComponents{

FTFoldComponent *foldComponentA = [[FTFoldComponent alloc]initWithSuperView:self
topViewNibName:@<your top layer xib name>
bottomViewNibName:@<your bottom layer xib name>];

FTFoldComponent *foldComponentB = [[FTFoldComponent alloc]initWithSuperView:self
topViewNibName:@<your top layer xib name>
bottomViewNibName:@<your bottom layer xib name>];

return @[foldComponentA,foldComponentB];
}

/* please refer to FTAnimationContext interface to get the 
full list of possible configuration parameters */

-(void)configureAnimationContext:(FTAnimationContext *)animationContext{

animationContext.expandAnimationDuration = 0.6f;
animationContext.collapseAnimationDuration = 0.6f;
animationContext.foldAngleFinalValue = - M_PI/6;
animationContext.animationMediaTimingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
}

At this point you have FTAnimationView that is ready to be used in your UI. Continue with steps 3 - 7 if you need to integrate it into the UITableView component.

Usage with UITableView:

  1. Subclass FTTableCell and create cell prototype. You can create as many different cells as you need in order to fulfill your UI tasks.

    3.1 Press '⌘ + N'. Create new subclass of UITableViewCell. Tick "Also create XIB file".
    3.2 Open .h file of your class. Change parent class to FTTableCell like this:

    @interface <your class name> : FTTableCell
    

    3.3 Open and edit cell xib according to your needs: (add UI components, setup Autolayout).
    3.4 Create data model object to manage UI components of your cell if any required.
    3.5 Set cell identifier.

  2. Configure each subclassed FTTableCell with FTAnimationView and FTTableCellSeparator overriding following methods in FTTableCell:

-(FTAnimationView *)submitAnimationView{
return [[<name of your FTAnimationView subclass> alloc]init];
}


/* do not override if you need cell without separator */
-(FTTableCellSeparator *)submitCellSeparator{
return [[FTTableCellSeparator alloc]initWithHeight:1.0f
offsetFromCellLeftEdge:0.0f
offsetFromCellRightEdge:0.0f
color:[UIColor colorWithRed:92.0f/255.0f green:94.0f/255.0f blue:102.0f/255.0f alpha:0.1f]];
}
  1. Subclass and configure FTTableModel. FTTableModel is responsible for the architecture of your table view: which cells are used and in which order. It can manage FTTableCell and UITableViewCell cells in any combinations.

Override the following methods in FTTableModel:

-(NSDictionary *)submitCellsIDs{

return  @{@"<id of your cell>":@"<xib name of your cell>"};

}

/* Submit your table architecture. In this example, the table consists only of cells of one type. You can implement any custom architecture combining different cell types for different rows */

-(NSArray *)submitTableCellsMetadata{

NSMutableArray *cellsMetadata = [[NSMutableArray alloc]init];

for (NSInteger i = 0; i < kNumberOfCellsInTable; i++) {

FTTableCellMetadata *tableCellMetadata = nil;

tableCellMetadata = [[FTTableCellMetadata alloc]initWithReuseID:@"<xib name of your cell>" isExpandable:YES isExpanded:NO];

[cellsMetadata addObject:tableCellMetadata];
}

return cellsMetadata;
}
  1. Add TableView UI component to your controller in the storyboard.

    6.1 Configure your TableView UI component.
    6.2 Set FTTableView as the custom class for your table (in storyboard settings).

  2. Subclass and configure FTTableViewController.
    FTTableViewController bridges FTTableView with FTTableModel and provides other logic to manage cells operations.

    7.1 In your subclassed FTTableViewController, link your FTTableView and subscribe for UITableViewDelegate and UITableViewDataSource protocols. Example:

    self.tableView.dataSource = self;
    self.tableView.delegate = self;
    

    7.2 Override the following methods in your subclassed FTTableViewController:

    -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return [super tableView:tableView numberOfRowsInSection:section];
    }
    
    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    return [super tableView:tableView cellForRowAtIndexPath:indexPath];
    }
    
    -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return [super tableView:tableView heightForRowAtIndexPath:indexPath];
    }
    
    -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    [self updateDisplayedDataForCell:cell atIndexPath:indexPath];
    }
    

    7.3 Implement your data model to manage the content of your cells.
    7.4 Implement mechanism to update the content of your cells using your data model.
    You can override -(void)tableView: willDisplayCell: forRowAtIndexPath: for that purpose.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].