Contents

조회 수 388 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

TinderSimpleSwipeCards

SwipeCards1.gif

This is for maximum customizability and / or learning purposes, not a pod or drop-in solution

The basics of a Tinder-like swipeable cards interface influenced by http://guti.in/articles/creating-tinder-like-animations/

This is meant to be taken and built off of, not as a simple drag and drop solution. New developers are often forced to use dependencies they don't understand and can't customize. This is the opposite. I've fully explained exactly how this works in detailed comments so that you can take it apart and customize it at will. For a pod/drag and drop solution, seehttps://github.com/modocache/MDCSwipeToChoose

Updates, Questions, and Requests

twitter <--- I am a very light twitterer, so I wont spam you

Relevant Article for deciding how to implement swipe cards into your app

https://medium.com/@cwRichardKim/adding-tinder-esque-cards-to-your-iphone-app-4047967303d1

On top of your current View Controllers

SwipeCards2.gif

Features:

  • Swipe cards left or right to call two separate actions
  • Have multiple cards on screen depending on the number of items in an array
  • Extremely simple, every component is explained
  • Very easily customizeable

Customizeability Examples:

action margin (the distance from the middle required for an action to take place)

SwipeCards3.gifSwipeCards4.gif

squeeze ratio (limit, strength)

SwipeCards5.gif

SwipeCards6.gif

rotation (strength, limit, angle)

SwipeCards7.gifSwipeCards8.gif

+ More!

in DraggableView.h

  • ACTION_MARGIN: distance from center where the action applies. Higher = swipe further in order for the action to be called
  • SCALE_STRENGTH: how quickly the card shrinks. Higher = slower shrinking
  • SCALE_MAX: upper bar for how much the card shrinks. Higher = shrinks less
  • ROTATION_MAX: the maximum rotation allowed in radians. Higher = card can keep rotating longer
  • ROTATION_STRENGTH: strength of rotation. Higher = weaker rotation
  • ROTATION_ANGLE: Higher = stronger rotation angle

Each component is also explained thoroughly, so it is highly customizeable in many ways

How to use

files

  • ViewController.h/m: example view controller (not necessary)
  • DraggableViewBackground.h/m: UIView that holds the DraggableView. This can be put ontop of view controllers or you can set it as the main view of your view controller
  • DraggableView.h/m: UIView of the draggable cards
  • OverlayView.h/m: UIView of the X and √ images

Setup as View Controller (see ViewController.m)

  DraggableViewBackground *draggableBackground = [[DraggableViewBackground alloc]initWithFrame:self.view.frame];
  [self.view addSubview:draggableBackground];

Setup as UIView ontop of View Controller

  CGRect frame = self.view.frame;
  frame.origin.y = -self.view.frame.size.height; //optional: if you want the view to drop down
  DraggableViewBackground *draggableBackground = [[DraggableViewBackground alloc]initWithFrame:frame];
  draggableBackground.alpha = 0; //optional: if you want the view to fade in

  [self.view addSubview:draggableBackground];

    //optional: animate down and in
  [UIView animateWithDuration:0.5 animations:^{
      draggableBackground.center = self.view.center;
      draggableBackground.alpha = 1;
  }];

Presenting Your Data

Loading Data

  • edit -(void)loadCards in DraggableViewBackground.m to dictate what information is loaded and how
  • "allCards" holds all the cards you want to show, "loadedCards" only shows the first few so that it doesn't load everything at once.
  • if card data is loaded after initWithFrame, then make sure the data is included in your custom data array (currently "exampleCardLabels") at the index: yourIndex and then write the code:

    DraggableView* newCard = [self createDraggableViewWithDataAtIndex:yourIndex];
    [allCards addObject:newCard];

    whenever you need to.

  • I used exampleCardLabels as an example of how to load data, but feel free to change that

Presenting Data in View

  • Customize the presentation of your data in -(DraggableView *)createDraggableViewWithDataAtIndex:(NSInteger)index in DraggableViewBackground.m (eg: make certain data appear on labels or photos in custom UIImageViews)
  • to access any card directly, use [loadedCards objectAtIndex:yourIndex]; For example, the card that is currently visible is at [loadedCards firstObject];

Areas for Future Improvement / Involvement

  • The repo potentially violates the MVC model by having to much controller functionality in a view (DraggableViewBackground)
  • Improved naming (while maintaining legacy and / or easy directions for change)


스와이프 제스츄어기반 카드컨트롤을 구현한 오픈소스 TinderSimpleSwipeCards 입니다.
좌우 드래그에 따른 액션을 정의해 사용할 수 있으며 아래와 같이 3가지 타입의 스와이프시 효과도 지원합니다.

[출처] https://github.com/cwRichardKim/TinderSimpleSwipeCards

?

  1. 스위프트로 구현된 차트 라이브러리, ios-chart

    Date2015.07.20 CategoryiOS Byhooni Views1239
    Read More
  2. 스위프트기반 재정렬 가능한 그리드뷰 컨트롤, ReorderableGridView-Swift

    Date2015.07.20 CategoryiOS Byhooni Views341
    Read More
  3. 스위프트기반 UI 컴포넌트 라이브러리, FloatLabelFields

    Date2015.07.20 CategoryiOS Byhooni Views302
    Read More
  4. 스위프트(Swift)로 반짝반짝 효과 만들기 - Twinkle

    Date2015.07.20 CategoryiOS Byhooni Views635
    Read More
  5. 스와이프 제스처 기반 커스텀 테이블뷰셀 II- slideActionCell

    Date2014.03.19 CategoryiOS Byhooni Views232
    Read More
  6. 스와이프 제스처 기반 커스텀 테이블뷰셀 - SWTableViewCell

    Date2014.03.19 CategoryiOS Byhooni Views260
    Read More
  7. 스와이프 제스처 기반 카드 컨트롤 오픈소스 - ZLSwipeableView

    Date2014.11.28 CategoryiOS Byhooni Views369
    Read More
  8. 스와이프 제스처 기반 카드 컨트롤 오픈소스 - TinderSimpleSwipeCards

    Date2014.10.06 CategoryiOS Byhooni Views388
    Read More
  9. 수치표시 슬라이더 - NYSliderpopover

    Date2014.03.18 CategoryiOS Byhooni Views209
    Read More
  10. 서클메뉴 - KYCircleMenu

    Date2014.03.18 CategoryiOS Byhooni Views215
    Read More
  11. 상하좌우 미러 카메라, flipped-cam

    Date2014.03.19 CategoryiOS Byhooni Views304
    Read More
  12. 상태바에 프레임레이트 차트 띄우기 - RRFPSBar

    Date2014.03.18 CategoryiOS Byhooni Views280
    Read More
Board Pagination Prev 1 ... 5 6 7 8 9 10 11 12 13 14 ... 19 Next
/ 19