├── MIT-LICENSE.txt ├── README.md ├── RSCustomCell.h ├── RSCustomCell.m ├── RSCustomTable.h ├── RSCustomTable.m ├── RSTransitionEffect ├── RSBasicItem.h ├── RSBasicItem.m ├── RSTransitionEffectViewController.h ├── RSTransitionEffectViewController.m ├── UITableView+Frames.h └── UITableView+Frames.m ├── RSTransitionEffectSample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── RSTransitionEffectSample.xccheckout │ └── xcuserdata │ │ ├── R0CKSTAR.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── mukeshmandora.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ ├── R0CKSTAR.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── RSTransitionEffectSample.xcscheme │ │ └── xcschememanagement.plist │ └── mukeshmandora.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── RSTransitionEffectSample.xcscheme │ └── xcschememanagement.plist ├── RSTransitionEffectSample ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Images │ ├── images-1.jpeg │ ├── images-10.jpeg │ ├── images-2.jpeg │ ├── images-3.jpeg │ ├── images-4.jpeg │ ├── images-5.jpeg │ ├── images-6.jpeg │ ├── images-7.jpeg │ ├── images-8.jpeg │ ├── images-9.jpeg │ └── temp.png ├── RSAppDelegate.h ├── RSAppDelegate.m ├── RSDetailViewController.h ├── RSDetailViewController.m ├── RSTableViewController.h ├── RSTableViewController.m ├── RSTransitionEffectSample-Info.plist ├── RSTransitionEffectSample-Prefix.pch ├── SampleData.plist ├── en.lproj │ └── InfoPlist.strings └── main.m └── RSTransitionEffectSampleTests ├── RSTransitionEffectSampleTests-Info.plist ├── RSTransitionEffectSampleTests.m └── en.lproj └── InfoPlist.strings /MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 P.D.Q. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | MMTransitionEffect 2 | ================== 3 | 4 | This is Extension Of RSTransitionEffect Transformed From (Frame based animation) to (Constraint Based Animation) 5 | 6 | ![Demo MMTransitionEffect](http://i.imgur.com/VgLIiif.gif) 7 | 8 | 9 | **My Other Repositories** 10 | 11 | **MMPaper:**
12 | https://github.com/mukyasa/MMPaper
13 | 14 | **MMCamScanner:**
15 | https://github.com/mukyasa/MMCamScanner
16 | 17 | **MMTextFieldEffects:**
18 | https://github.com/mukyasa/MMTextFieldEffects
19 | 20 | **MMGooglePlayNewsStand:**
21 | https://github.com/mukyasa/MMGooglePlayNewsStand 22 | 23 | **MMPaperPanFlip:**
24 | https://github.com/mukyasa/MMPaperPanFlip
25 | 26 | 27 | 28 | Contact Me 29 | ========== 30 | Mukesh Mandora 31 | 32 | Contact: mandoramuku07@gmail.com 33 | 34 | Twitter: http://twitter.com/mandymuku 35 | 36 | LinkedIn: https://in.linkedin.com/in/mukeshmandora 37 | -------------------------------------------------------------------------------- /RSCustomCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSCustomCell.h 3 | // RSTransitionEffectSample 4 | // 5 | // Created by mukesh mandora on 10/10/14. 6 | // Copyright (c) 2014 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSCustomCell : UITableViewCell 12 | @property (weak, nonatomic) IBOutlet UIImageView *rsImageView; 13 | @property (weak, nonatomic) IBOutlet UILabel *reTitle; 14 | @property (weak, nonatomic) IBOutlet UILabel *rsDetail; 15 | 16 | 17 | - (void)cellOnTableView:(UITableView *)tableView didScrollOnView:(UIView *)view; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /RSCustomCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSCustomCell.m 3 | // RSTransitionEffectSample 4 | // 5 | // Created by mukesh mandora on 10/10/14. 6 | // Copyright (c) 2014 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSCustomCell.h" 10 | 11 | @implementation RSCustomCell 12 | - (void)cellOnTableView:(UITableView *)tableView didScrollOnView:(UIView *)view 13 | { 14 | CGRect rectInSuperview = [tableView convertRect:self.frame toView:view]; 15 | 16 | float distanceFromCenter = CGRectGetHeight(view.frame)/2 - CGRectGetMinY(rectInSuperview); 17 | float difference = CGRectGetHeight(self.rsImageView.frame) - CGRectGetHeight(self.frame); 18 | float move = (distanceFromCenter / CGRectGetHeight(view.frame)) * difference; 19 | 20 | CGRect imageRect = self.rsImageView.frame; 21 | imageRect.origin.y = -(difference/2)+move; 22 | self.rsImageView.frame = imageRect; 23 | } 24 | @end 25 | -------------------------------------------------------------------------------- /RSCustomTable.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSCustomTable.h 3 | // RSTransitionEffectSample 4 | // 5 | // Created by mukesh mandora on 10/10/14. 6 | // Copyright (c) 2014 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSCustomTable : UITableViewController 12 | @property (nonatomic, strong) NSMutableArray *items; 13 | @end 14 | -------------------------------------------------------------------------------- /RSCustomTable.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSCustomTable.m 3 | // RSTransitionEffectSample 4 | // 5 | // Created by mukesh mandora on 10/10/14. 6 | // Copyright (c) 2014 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSCustomTable.h" 10 | #import "RSBasicItem.h" 11 | #import "RSDetailViewController.h" 12 | #import "UITableView+Frames.h" 13 | #import "RSCustomCell.h" 14 | @implementation RSCustomTable 15 | - (NSMutableArray *)items 16 | { 17 | if (!_items) { 18 | _items = [[NSMutableArray alloc] init]; 19 | } 20 | return _items; 21 | } 22 | 23 | - (void)viewDidLoad 24 | { 25 | [super viewDidLoad]; 26 | 27 | @autoreleasepool { 28 | NSString *path = [[NSBundle mainBundle] pathForResource:@"SampleData" ofType:@"plist"]; 29 | NSArray *items = [[[NSDictionary alloc] initWithContentsOfFile:path] objectForKey:@"Data"]; 30 | for (NSDictionary *dict in items) { 31 | RSBasicItem *item = [[RSBasicItem alloc] init]; 32 | item.image = [UIImage imageNamed:[dict objectForKey:@"Image"]]; 33 | item.text = [dict objectForKey:@"Place"]; 34 | item.detailText = [dict objectForKey:@"Country"]; 35 | [self.items addObject:item]; 36 | } 37 | } 38 | } 39 | 40 | -(void)viewDidAppear:(BOOL)animated{ 41 | [super viewDidAppear:YES]; 42 | // [self scrollViewDidScroll:nil]; 43 | } 44 | 45 | #pragma mark - Table view data source 46 | 47 | - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 48 | { 49 | return 1; 50 | } 51 | 52 | - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 53 | { 54 | return 10; 55 | } 56 | 57 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 58 | { 59 | static NSString *CellIdentifier = @"RSCell"; 60 | RSCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; 61 | 62 | if(cell==nil){ 63 | cell=[[RSCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; 64 | } 65 | 66 | // Configure the cell... 67 | RSBasicItem *item = [self.items objectAtIndex:[indexPath row]]; 68 | 69 | cell.rsImageView.layer.cornerRadius = cell.rsImageView.frame.size.width / 2; 70 | cell.rsImageView.layer.masksToBounds=YES; 71 | cell.rsImageView.clipsToBounds = YES; 72 | cell.rsImageView.image = item.image; 73 | cell.reTitle.text = item.text; 74 | cell.rsDetail.text = item.detailText; 75 | 76 | return cell; 77 | } 78 | 79 | #pragma mark - Table view delegate 80 | 81 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 82 | { 83 | [tableView deselectRowAtIndexPath:indexPath animated:YES]; 84 | 85 | RSDetailViewController *viewController = [self.storyboard instantiateViewControllerWithIdentifier:@"detail"]; 86 | viewController.sourceFrames = [tableView framesForRowAtIndexPath:indexPath]; 87 | viewController.item = [self.items objectAtIndex:[indexPath row]]; 88 | viewController.animationDuration = 0.8f; 89 | 90 | 91 | 92 | viewController.img=[NSString stringWithFormat:@"%f",[[viewController.sourceFrames objectForKey:@"imageView"] CGRectValue].origin.y]; 93 | 94 | NSLog(@"%f", [[viewController.sourceFrames objectForKey:@"textLabel"] CGRectValue].origin.y); 95 | viewController.txt=[NSString stringWithFormat:@"%f",[[viewController.sourceFrames objectForKey:@"textLabel"] CGRectValue].origin.y]; 96 | viewController.det=[NSString stringWithFormat:@"%f",[[viewController.sourceFrames objectForKey:@"detailTextLabel"] CGRectValue].origin.y]; 97 | viewController.cel=[NSString stringWithFormat:@"%f",[[viewController.sourceFrames objectForKey:@"cell"] CGRectValue].origin.y]; 98 | 99 | [self.navigationController pushViewController:viewController animated:NO]; 100 | } 101 | 102 | @end -------------------------------------------------------------------------------- /RSTransitionEffect/RSBasicItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSBasicListItem.h 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/12/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSBasicItem : NSObject 12 | 13 | @property (nonatomic, copy) UIImage *image; 14 | 15 | @property (nonatomic, copy) NSString *text; 16 | 17 | @property (nonatomic, copy) NSString *detailText; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /RSTransitionEffect/RSBasicItem.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSBasicListItem.m 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/12/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSBasicItem.h" 10 | 11 | @implementation RSBasicItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /RSTransitionEffect/RSTransitionEffectViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSTransitionEffectViewController.h 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RSBasicItem; 12 | 13 | @interface RSTransitionEffectViewController : UIViewController 14 | 15 | @property (nonatomic, strong) NSDictionary *sourceFrames; 16 | 17 | @property (nonatomic, strong) RSBasicItem *item; 18 | 19 | @property (nonatomic, assign) NSTimeInterval animationDuration; 20 | 21 | @property (nonatomic, copy) UIColor *cellBackgroundColor; 22 | 23 | #pragma mark - IB 24 | 25 | @property (nonatomic, weak) IBOutlet UIView *cell; 26 | 27 | @property (nonatomic, weak) IBOutlet UIImageView *imageView; 28 | 29 | @property (nonatomic, weak) IBOutlet UILabel *textLabel; 30 | 31 | @property (nonatomic, weak) IBOutlet UILabel *detailTextLabel; 32 | 33 | @property (nonatomic, weak) IBOutlet UIView *backgroundView; 34 | 35 | @property (nonatomic, weak) IBOutlet UIToolbar *toolbar; 36 | 37 | - (IBAction)close:(id)sender; 38 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imghoriz; 39 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *texthoriz; 40 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *detailtexthoriz; 41 | 42 | 43 | //img 44 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgheightconstraint; 45 | 46 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgwidthconstraint; 47 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *toppaceimgconstraint; 48 | 49 | //TEXT 50 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *toptxtconstraint; 51 | 52 | 53 | //DETAIL 54 | 55 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *topdetailconstraint; 56 | 57 | //TOOLBAR 58 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomtoolbarconstrint; 59 | 60 | //CELL 61 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *cellheightconstraint; 62 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *celltopconstraint; 63 | 64 | @property(strong,nonatomic) NSString *img,*txt,*det,*cel; 65 | @end 66 | -------------------------------------------------------------------------------- /RSTransitionEffect/RSTransitionEffectViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSTransitionEffectViewController.m 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSTransitionEffectViewController.h" 10 | 11 | #import "RSBasicItem.h" 12 | @interface RSTransitionEffectViewController () 13 | 14 | @property (nonatomic, strong) NSDictionary *targetFrames; 15 | 16 | @property (nonatomic, strong) UIColor *backgroundColor; 17 | 18 | - (void)__bindItem; 19 | 20 | //- (void)__buildTargetFrames; 21 | // 22 | //- (void)__switchToSourceFrames:(BOOL)isSource; 23 | 24 | @end 25 | 26 | @implementation RSTransitionEffectViewController 27 | 28 | #pragma mark - Private 29 | 30 | - (void)__bindItem 31 | { 32 | // self.imageView=[[UIImageView alloc] initWithFrame:CGRectMake(self.view.center.x-80, 30, 160, 160)]; 33 | // [self.view addSubview:self.imageView]; 34 | 35 | 36 | self.imageView.layer.cornerRadius = self.imageView.bounds.size.width / 2; 37 | self.imageView.clipsToBounds = YES; 38 | self.imageView.image = self.item.image; 39 | 40 | self.textLabel.text = self.item.text; 41 | [self.textLabel sizeToFit]; 42 | self.detailTextLabel.text = self.item.detailText; 43 | [self.detailTextLabel sizeToFit]; 44 | } 45 | 46 | - (void)__buildTargetFrames 47 | { 48 | 49 | [self.imageView layoutIfNeeded]; 50 | NSMutableDictionary *frames = [NSMutableDictionary dictionary]; 51 | 52 | [frames setObject:[NSValue valueWithCGRect:self.cell.frame] forKey:@"cell"]; 53 | 54 | 55 | [frames setObject:[NSValue valueWithCGRect:self.imageView.frame] forKey:@"imageView"]; 56 | 57 | 58 | CGRect frame = self.textLabel.frame; 59 | frame.origin.x = roundf((self.view.bounds.size.width - frame.size.width) / 2.0f); 60 | [frames setObject:[NSValue valueWithCGRect:frame] forKey:@"textLabel"]; 61 | 62 | frame = self.detailTextLabel.frame; 63 | frame.origin.x = roundf((self.view.bounds.size.width - frame.size.width) / 2.0f); 64 | [frames setObject:[NSValue valueWithCGRect:frame] forKey:@"detailTextLabel"]; 65 | 66 | self.targetFrames = [NSDictionary dictionaryWithDictionary:frames]; 67 | } 68 | 69 | 70 | #pragma mark - RSTransitionEffectViewController 71 | 72 | - (id)initWithCoder:(NSCoder *)aDecoder 73 | { 74 | self = [super initWithCoder:aDecoder]; 75 | if (self) { 76 | 77 | 78 | UIWindow *window = [[UIApplication sharedApplication] keyWindow]; 79 | UIGraphicsBeginImageContextWithOptions(window.bounds.size, YES, 0.0f); 80 | CGContextRef context = UIGraphicsGetCurrentContext(); 81 | [window.layer renderInContext:context]; 82 | self.backgroundColor = [UIColor colorWithPatternImage:UIGraphicsGetImageFromCurrentImageContext()]; 83 | UIGraphicsEndImageContext(); 84 | 85 | self.animationDuration = 1.0f; 86 | 87 | 88 | self.cellBackgroundColor = [UIColor lightGrayColor]; 89 | } 90 | return self; 91 | } 92 | 93 | - (void)__switchToCornerRadius:(BOOL)isSource 94 | { 95 | CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"cornerRadius"]; 96 | animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; 97 | if(isSource){ 98 | animation.fromValue = [NSNumber numberWithFloat:(160 / 2)]; 99 | animation.toValue = [NSNumber numberWithFloat:80/ 2]; 100 | } 101 | else{ 102 | animation.fromValue = [NSNumber numberWithFloat:(80 / 2)]; 103 | animation.toValue = [NSNumber numberWithFloat:160/ 2]; 104 | } 105 | 106 | animation.duration = self.animationDuration; 107 | [self.imageView.layer addAnimation:animation forKey:@"cornerRadius"]; 108 | } 109 | 110 | - (void)viewDidLoad 111 | { 112 | [super viewDidLoad]; 113 | // Do any additional setup after loading the view. 114 | self.backgroundView.backgroundColor = self.backgroundColor; 115 | 116 | 117 | self.cell.backgroundColor = self.cellBackgroundColor; 118 | 119 | [self __bindItem]; 120 | 121 | [[self.view superview] layoutIfNeeded]; 122 | 123 | [UIView animateWithDuration:self.animationDuration 124 | delay:0.0 125 | options:UIViewAnimationOptionLayoutSubviews 126 | 127 | animations:^{ 128 | 129 | self.imghoriz.constant=23; 130 | self.texthoriz.constant=166; 131 | self.detailtexthoriz.constant=166; 132 | 133 | self.imgheightconstraint.constant=80; 134 | self.imgwidthconstraint.constant=80; 135 | 136 | self.toppaceimgconstraint.constant=[self.img floatValue]-20;//20 status bar 137 | self.toptxtconstraint.constant=[self.txt floatValue]-20; 138 | self.topdetailconstraint.constant=[self.det floatValue]-20; 139 | self.bottomtoolbarconstrint.constant=-44; 140 | 141 | self.cellheightconstraint.constant=140; 142 | self.celltopconstraint.constant=[self.cel floatValue]; 143 | [self __switchToCornerRadius:NO]; 144 | [[self.view superview] layoutIfNeeded]; 145 | 146 | } 147 | completion:^(BOOL finished){ 148 | 149 | [UIView animateWithDuration:self.animationDuration delay:0.0 150 | options:UIViewAnimationOptionLayoutSubviews 151 | animations:^{ 152 | self.backgroundView.alpha = 0; 153 | self.imghoriz.constant=self.view.center.x-80;//80 width of img 154 | self.texthoriz.constant=self.view.center.x-40;//40 width of text 155 | self.detailtexthoriz.constant=self.view.center.x-40;//40 width of detail txt 156 | 157 | self.imgheightconstraint.constant=160; 158 | self.imgwidthconstraint.constant=160; 159 | 160 | self.toppaceimgconstraint.constant=30; 161 | self.toptxtconstraint.constant=210; 162 | self.topdetailconstraint.constant=240; 163 | 164 | self.bottomtoolbarconstrint.constant=0; 165 | self.cellheightconstraint.constant=290; 166 | self.celltopconstraint.constant=0; 167 | [[self.view superview] layoutIfNeeded]; 168 | 169 | } 170 | completion:^(BOOL finished){ 171 | 172 | 173 | }]; 174 | 175 | 176 | }]; 177 | 178 | 179 | 180 | } 181 | 182 | 183 | 184 | - (void)didReceiveMemoryWarning 185 | { 186 | [super didReceiveMemoryWarning]; 187 | // Dispose of any resources that can be recreated. 188 | } 189 | 190 | - (IBAction)close:(id)sender 191 | { 192 | [UIView animateWithDuration:self.animationDuration animations:^{ 193 | [[self.view superview] layoutIfNeeded]; 194 | } 195 | completion:^(BOOL finished){ 196 | [UIView animateWithDuration:self.animationDuration animations:^{ 197 | self.cell.alpha = 0; 198 | self.backgroundView.alpha=1; 199 | self.imghoriz.constant=23; 200 | self.texthoriz.constant=166; 201 | self.detailtexthoriz.constant=166; 202 | 203 | self.imgheightconstraint.constant=80; 204 | self.imgwidthconstraint.constant=80; 205 | self.toppaceimgconstraint.constant=[self.img floatValue]-20; 206 | 207 | self.toptxtconstraint.constant=[self.txt floatValue]-20; 208 | self.topdetailconstraint.constant=[self.det floatValue]-20; 209 | 210 | self.bottomtoolbarconstrint.constant=-44; 211 | 212 | self.cellheightconstraint.constant=140; 213 | self.celltopconstraint.constant=[self.cel floatValue]; 214 | [self __switchToCornerRadius:YES]; 215 | [[self.view superview] layoutIfNeeded]; 216 | 217 | 218 | 219 | 220 | } completion:^(BOOL finished) { 221 | [[self.view superview] layoutIfNeeded]; 222 | [self.navigationController popViewControllerAnimated:NO]; 223 | 224 | }]; 225 | 226 | 227 | }]; 228 | 229 | 230 | } 231 | 232 | @end 233 | -------------------------------------------------------------------------------- /RSTransitionEffect/UITableView+Frames.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+Frames.h 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UITableView (Frames) 12 | 13 | - (NSDictionary *)framesForRowAtIndexPath:(NSIndexPath *)indexPath; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSTransitionEffect/UITableView+Frames.m: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+Frames.m 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "UITableView+Frames.h" 10 | #import "RSCustomCell.h" 11 | 12 | @implementation UITableView (Frames) 13 | 14 | - (NSDictionary *)framesForRowAtIndexPath:(NSIndexPath *)indexPath 15 | { 16 | // UITableViewCell *cell = [self cellForRowAtIndexPath:indexPath]; 17 | // CGRect cellFrameInTableView = [self rectForRowAtIndexPath:indexPath]; 18 | // CGRect cellFrameInWindow = [self convertRect:cellFrameInTableView toView:[UIApplication sharedApplication].keyWindow]; 19 | // 20 | // NSMutableDictionary *frames = [NSMutableDictionary dictionary]; 21 | // 22 | // [frames setObject:[NSValue valueWithCGRect:cellFrameInWindow] forKey:@"cell"]; 23 | // 24 | // [frames setObject:[NSValue valueWithCGRect:CGRectOffset(cell.imageView.frame, cellFrameInWindow.origin.x, cellFrameInWindow.origin.y)] forKey:@"imageView"]; 25 | // 26 | // [frames setObject:[NSValue valueWithCGRect:CGRectOffset(cell.textLabel.frame, cellFrameInWindow.origin.x, cellFrameInWindow.origin.y)] forKey:@"textLabel"]; 27 | // 28 | // [frames setObject:[NSValue valueWithCGRect:CGRectOffset(cell.detailTextLabel.frame, cellFrameInWindow.origin.x, cellFrameInWindow.origin.y)] forKey:@"detailTextLabel"]; 29 | // 30 | // return [NSDictionary dictionaryWithDictionary:frames]; 31 | 32 | RSCustomCell *cell = (RSCustomCell*)[self cellForRowAtIndexPath:indexPath]; 33 | CGRect cellFrameInTableView = [self rectForRowAtIndexPath:indexPath]; 34 | CGRect cellFrameInWindow = [self convertRect:cellFrameInTableView toView:[UIApplication sharedApplication].keyWindow]; 35 | 36 | NSMutableDictionary *frames = [NSMutableDictionary dictionary]; 37 | 38 | [frames setObject:[NSValue valueWithCGRect:cellFrameInWindow] forKey:@"cell"]; 39 | 40 | 41 | 42 | [frames setObject:[NSValue valueWithCGRect:CGRectOffset(cell.rsImageView.frame, cellFrameInWindow.origin.x, cellFrameInWindow.origin.y)] forKey:@"imageView"]; 43 | 44 | 45 | 46 | [frames setObject:[NSValue valueWithCGRect:CGRectOffset(cell.reTitle.frame, cellFrameInWindow.origin.x, cellFrameInWindow.origin.y)] forKey:@"textLabel"]; 47 | 48 | [frames setObject:[NSValue valueWithCGRect:CGRectOffset(cell.rsDetail.frame, cellFrameInWindow.origin.x, cellFrameInWindow.origin.y)] forKey:@"detailTextLabel"]; 49 | 50 | // NSLog(@"%@",frames); 51 | 52 | return [NSDictionary dictionaryWithDictionary:frames]; 53 | 54 | } 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 551AA61D19E79B6500B03577 /* RSCustomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 551AA61C19E79B6500B03577 /* RSCustomCell.m */; }; 11 | 551AA62019E79B8B00B03577 /* RSCustomTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 551AA61F19E79B8B00B03577 /* RSCustomTable.m */; }; 12 | D0ACB0DF18596BB600A092B4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0ACB0DE18596BB600A092B4 /* Foundation.framework */; }; 13 | D0ACB0E118596BB600A092B4 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0ACB0E018596BB600A092B4 /* CoreGraphics.framework */; }; 14 | D0ACB0E318596BB600A092B4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0ACB0E218596BB600A092B4 /* UIKit.framework */; }; 15 | D0ACB0E918596BB600A092B4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB0E718596BB600A092B4 /* InfoPlist.strings */; }; 16 | D0ACB0EB18596BB600A092B4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB0EA18596BB600A092B4 /* main.m */; }; 17 | D0ACB0EF18596BB600A092B4 /* RSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB0EE18596BB600A092B4 /* RSAppDelegate.m */; }; 18 | D0ACB0F218596BB600A092B4 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB0F018596BB600A092B4 /* Main.storyboard */; }; 19 | D0ACB0F718596BB600A092B4 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB0F618596BB600A092B4 /* Images.xcassets */; }; 20 | D0ACB0FE18596BB600A092B4 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0ACB0FD18596BB600A092B4 /* XCTest.framework */; }; 21 | D0ACB0FF18596BB600A092B4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0ACB0DE18596BB600A092B4 /* Foundation.framework */; }; 22 | D0ACB10018596BB600A092B4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0ACB0E218596BB600A092B4 /* UIKit.framework */; }; 23 | D0ACB10818596BB600A092B4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB10618596BB600A092B4 /* InfoPlist.strings */; }; 24 | D0ACB10A18596BB600A092B4 /* RSTransitionEffectSampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB10918596BB600A092B4 /* RSTransitionEffectSampleTests.m */; }; 25 | D0ACB11A18596BF500A092B4 /* RSBasicItem.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB11518596BF500A092B4 /* RSBasicItem.m */; }; 26 | D0ACB11B18596BF500A092B4 /* RSTransitionEffectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB11718596BF500A092B4 /* RSTransitionEffectViewController.m */; }; 27 | D0ACB11C18596BF500A092B4 /* UITableView+Frames.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB11918596BF500A092B4 /* UITableView+Frames.m */; }; 28 | D0ACB12118596C4200A092B4 /* RSDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB11E18596C4200A092B4 /* RSDetailViewController.m */; }; 29 | D0ACB12218596C4200A092B4 /* RSTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACB12018596C4200A092B4 /* RSTableViewController.m */; }; 30 | D0ACB12418596C8400A092B4 /* SampleData.plist in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12318596C8400A092B4 /* SampleData.plist */; }; 31 | D0ACB13118596D6200A092B4 /* images-1.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12618596D6200A092B4 /* images-1.jpeg */; }; 32 | D0ACB13218596D6200A092B4 /* images-10.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12718596D6200A092B4 /* images-10.jpeg */; }; 33 | D0ACB13318596D6200A092B4 /* images-2.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12818596D6200A092B4 /* images-2.jpeg */; }; 34 | D0ACB13418596D6200A092B4 /* images-3.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12918596D6200A092B4 /* images-3.jpeg */; }; 35 | D0ACB13518596D6200A092B4 /* images-4.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12A18596D6200A092B4 /* images-4.jpeg */; }; 36 | D0ACB13618596D6200A092B4 /* images-5.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12B18596D6200A092B4 /* images-5.jpeg */; }; 37 | D0ACB13718596D6200A092B4 /* images-6.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12C18596D6200A092B4 /* images-6.jpeg */; }; 38 | D0ACB13818596D6200A092B4 /* images-7.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12D18596D6200A092B4 /* images-7.jpeg */; }; 39 | D0ACB13918596D6200A092B4 /* images-8.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12E18596D6200A092B4 /* images-8.jpeg */; }; 40 | D0ACB13A18596D6200A092B4 /* images-9.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB12F18596D6200A092B4 /* images-9.jpeg */; }; 41 | D0ACB13B18596D6200A092B4 /* temp.png in Resources */ = {isa = PBXBuildFile; fileRef = D0ACB13018596D6200A092B4 /* temp.png */; }; 42 | /* End PBXBuildFile section */ 43 | 44 | /* Begin PBXContainerItemProxy section */ 45 | D0ACB10118596BB600A092B4 /* PBXContainerItemProxy */ = { 46 | isa = PBXContainerItemProxy; 47 | containerPortal = D0ACB0D318596BB600A092B4 /* Project object */; 48 | proxyType = 1; 49 | remoteGlobalIDString = D0ACB0DA18596BB600A092B4; 50 | remoteInfo = RSTransitionEffectSample; 51 | }; 52 | /* End PBXContainerItemProxy section */ 53 | 54 | /* Begin PBXFileReference section */ 55 | 551AA61B19E79B6500B03577 /* RSCustomCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSCustomCell.h; sourceTree = ""; }; 56 | 551AA61C19E79B6500B03577 /* RSCustomCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSCustomCell.m; sourceTree = ""; }; 57 | 551AA61E19E79B8B00B03577 /* RSCustomTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSCustomTable.h; sourceTree = ""; }; 58 | 551AA61F19E79B8B00B03577 /* RSCustomTable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSCustomTable.m; sourceTree = ""; }; 59 | D0ACB0DB18596BB600A092B4 /* RSTransitionEffectSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RSTransitionEffectSample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | D0ACB0DE18596BB600A092B4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 61 | D0ACB0E018596BB600A092B4 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 62 | D0ACB0E218596BB600A092B4 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 63 | D0ACB0E618596BB600A092B4 /* RSTransitionEffectSample-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "RSTransitionEffectSample-Info.plist"; sourceTree = ""; }; 64 | D0ACB0E818596BB600A092B4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 65 | D0ACB0EA18596BB600A092B4 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 66 | D0ACB0EC18596BB600A092B4 /* RSTransitionEffectSample-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RSTransitionEffectSample-Prefix.pch"; sourceTree = ""; }; 67 | D0ACB0ED18596BB600A092B4 /* RSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RSAppDelegate.h; sourceTree = ""; }; 68 | D0ACB0EE18596BB600A092B4 /* RSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RSAppDelegate.m; sourceTree = ""; }; 69 | D0ACB0F118596BB600A092B4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 70 | D0ACB0F618596BB600A092B4 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 71 | D0ACB0FC18596BB600A092B4 /* RSTransitionEffectSampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RSTransitionEffectSampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 72 | D0ACB0FD18596BB600A092B4 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 73 | D0ACB10518596BB600A092B4 /* RSTransitionEffectSampleTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "RSTransitionEffectSampleTests-Info.plist"; sourceTree = ""; }; 74 | D0ACB10718596BB600A092B4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 75 | D0ACB10918596BB600A092B4 /* RSTransitionEffectSampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RSTransitionEffectSampleTests.m; sourceTree = ""; }; 76 | D0ACB11418596BF500A092B4 /* RSBasicItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSBasicItem.h; sourceTree = ""; }; 77 | D0ACB11518596BF500A092B4 /* RSBasicItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSBasicItem.m; sourceTree = ""; }; 78 | D0ACB11618596BF500A092B4 /* RSTransitionEffectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSTransitionEffectViewController.h; sourceTree = ""; }; 79 | D0ACB11718596BF500A092B4 /* RSTransitionEffectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSTransitionEffectViewController.m; sourceTree = ""; }; 80 | D0ACB11818596BF500A092B4 /* UITableView+Frames.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+Frames.h"; sourceTree = ""; }; 81 | D0ACB11918596BF500A092B4 /* UITableView+Frames.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+Frames.m"; sourceTree = ""; }; 82 | D0ACB11D18596C4200A092B4 /* RSDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RSDetailViewController.h; path = RSTransitionEffectSample/RSDetailViewController.h; sourceTree = SOURCE_ROOT; }; 83 | D0ACB11E18596C4200A092B4 /* RSDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RSDetailViewController.m; path = RSTransitionEffectSample/RSDetailViewController.m; sourceTree = SOURCE_ROOT; }; 84 | D0ACB11F18596C4200A092B4 /* RSTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RSTableViewController.h; path = RSTransitionEffectSample/RSTableViewController.h; sourceTree = SOURCE_ROOT; }; 85 | D0ACB12018596C4200A092B4 /* RSTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RSTableViewController.m; path = RSTransitionEffectSample/RSTableViewController.m; sourceTree = SOURCE_ROOT; }; 86 | D0ACB12318596C8400A092B4 /* SampleData.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = SampleData.plist; sourceTree = ""; }; 87 | D0ACB12618596D6200A092B4 /* images-1.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-1.jpeg"; sourceTree = ""; }; 88 | D0ACB12718596D6200A092B4 /* images-10.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-10.jpeg"; sourceTree = ""; }; 89 | D0ACB12818596D6200A092B4 /* images-2.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-2.jpeg"; sourceTree = ""; }; 90 | D0ACB12918596D6200A092B4 /* images-3.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-3.jpeg"; sourceTree = ""; }; 91 | D0ACB12A18596D6200A092B4 /* images-4.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-4.jpeg"; sourceTree = ""; }; 92 | D0ACB12B18596D6200A092B4 /* images-5.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-5.jpeg"; sourceTree = ""; }; 93 | D0ACB12C18596D6200A092B4 /* images-6.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-6.jpeg"; sourceTree = ""; }; 94 | D0ACB12D18596D6200A092B4 /* images-7.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-7.jpeg"; sourceTree = ""; }; 95 | D0ACB12E18596D6200A092B4 /* images-8.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-8.jpeg"; sourceTree = ""; }; 96 | D0ACB12F18596D6200A092B4 /* images-9.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "images-9.jpeg"; sourceTree = ""; }; 97 | D0ACB13018596D6200A092B4 /* temp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = temp.png; sourceTree = ""; }; 98 | /* End PBXFileReference section */ 99 | 100 | /* Begin PBXFrameworksBuildPhase section */ 101 | D0ACB0D818596BB600A092B4 /* Frameworks */ = { 102 | isa = PBXFrameworksBuildPhase; 103 | buildActionMask = 2147483647; 104 | files = ( 105 | D0ACB0E118596BB600A092B4 /* CoreGraphics.framework in Frameworks */, 106 | D0ACB0E318596BB600A092B4 /* UIKit.framework in Frameworks */, 107 | D0ACB0DF18596BB600A092B4 /* Foundation.framework in Frameworks */, 108 | ); 109 | runOnlyForDeploymentPostprocessing = 0; 110 | }; 111 | D0ACB0F918596BB600A092B4 /* Frameworks */ = { 112 | isa = PBXFrameworksBuildPhase; 113 | buildActionMask = 2147483647; 114 | files = ( 115 | D0ACB0FE18596BB600A092B4 /* XCTest.framework in Frameworks */, 116 | D0ACB10018596BB600A092B4 /* UIKit.framework in Frameworks */, 117 | D0ACB0FF18596BB600A092B4 /* Foundation.framework in Frameworks */, 118 | ); 119 | runOnlyForDeploymentPostprocessing = 0; 120 | }; 121 | /* End PBXFrameworksBuildPhase section */ 122 | 123 | /* Begin PBXGroup section */ 124 | D0ACB0D218596BB600A092B4 = { 125 | isa = PBXGroup; 126 | children = ( 127 | 551AA61E19E79B8B00B03577 /* RSCustomTable.h */, 128 | 551AA61F19E79B8B00B03577 /* RSCustomTable.m */, 129 | 551AA61B19E79B6500B03577 /* RSCustomCell.h */, 130 | 551AA61C19E79B6500B03577 /* RSCustomCell.m */, 131 | D0ACB0E418596BB600A092B4 /* RSTransitionEffectSample */, 132 | D0ACB10318596BB600A092B4 /* RSTransitionEffectSampleTests */, 133 | D0ACB0DD18596BB600A092B4 /* Frameworks */, 134 | D0ACB0DC18596BB600A092B4 /* Products */, 135 | ); 136 | sourceTree = ""; 137 | }; 138 | D0ACB0DC18596BB600A092B4 /* Products */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | D0ACB0DB18596BB600A092B4 /* RSTransitionEffectSample.app */, 142 | D0ACB0FC18596BB600A092B4 /* RSTransitionEffectSampleTests.xctest */, 143 | ); 144 | name = Products; 145 | sourceTree = ""; 146 | }; 147 | D0ACB0DD18596BB600A092B4 /* Frameworks */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | D0ACB0DE18596BB600A092B4 /* Foundation.framework */, 151 | D0ACB0E018596BB600A092B4 /* CoreGraphics.framework */, 152 | D0ACB0E218596BB600A092B4 /* UIKit.framework */, 153 | D0ACB0FD18596BB600A092B4 /* XCTest.framework */, 154 | ); 155 | name = Frameworks; 156 | sourceTree = ""; 157 | }; 158 | D0ACB0E418596BB600A092B4 /* RSTransitionEffectSample */ = { 159 | isa = PBXGroup; 160 | children = ( 161 | D0ACB11318596BF500A092B4 /* RSTransitionEffect */, 162 | D0ACB0ED18596BB600A092B4 /* RSAppDelegate.h */, 163 | D0ACB0EE18596BB600A092B4 /* RSAppDelegate.m */, 164 | D0ACB11D18596C4200A092B4 /* RSDetailViewController.h */, 165 | D0ACB11E18596C4200A092B4 /* RSDetailViewController.m */, 166 | D0ACB11F18596C4200A092B4 /* RSTableViewController.h */, 167 | D0ACB12018596C4200A092B4 /* RSTableViewController.m */, 168 | D0ACB0F018596BB600A092B4 /* Main.storyboard */, 169 | D0ACB0F618596BB600A092B4 /* Images.xcassets */, 170 | D0ACB0E518596BB600A092B4 /* Supporting Files */, 171 | ); 172 | path = RSTransitionEffectSample; 173 | sourceTree = ""; 174 | }; 175 | D0ACB0E518596BB600A092B4 /* Supporting Files */ = { 176 | isa = PBXGroup; 177 | children = ( 178 | D0ACB12518596D6200A092B4 /* Images */, 179 | D0ACB12318596C8400A092B4 /* SampleData.plist */, 180 | D0ACB0E618596BB600A092B4 /* RSTransitionEffectSample-Info.plist */, 181 | D0ACB0E718596BB600A092B4 /* InfoPlist.strings */, 182 | D0ACB0EA18596BB600A092B4 /* main.m */, 183 | D0ACB0EC18596BB600A092B4 /* RSTransitionEffectSample-Prefix.pch */, 184 | ); 185 | name = "Supporting Files"; 186 | sourceTree = ""; 187 | }; 188 | D0ACB10318596BB600A092B4 /* RSTransitionEffectSampleTests */ = { 189 | isa = PBXGroup; 190 | children = ( 191 | D0ACB10918596BB600A092B4 /* RSTransitionEffectSampleTests.m */, 192 | D0ACB10418596BB600A092B4 /* Supporting Files */, 193 | ); 194 | path = RSTransitionEffectSampleTests; 195 | sourceTree = ""; 196 | }; 197 | D0ACB10418596BB600A092B4 /* Supporting Files */ = { 198 | isa = PBXGroup; 199 | children = ( 200 | D0ACB10518596BB600A092B4 /* RSTransitionEffectSampleTests-Info.plist */, 201 | D0ACB10618596BB600A092B4 /* InfoPlist.strings */, 202 | ); 203 | name = "Supporting Files"; 204 | sourceTree = ""; 205 | }; 206 | D0ACB11318596BF500A092B4 /* RSTransitionEffect */ = { 207 | isa = PBXGroup; 208 | children = ( 209 | D0ACB11418596BF500A092B4 /* RSBasicItem.h */, 210 | D0ACB11518596BF500A092B4 /* RSBasicItem.m */, 211 | D0ACB11618596BF500A092B4 /* RSTransitionEffectViewController.h */, 212 | D0ACB11718596BF500A092B4 /* RSTransitionEffectViewController.m */, 213 | D0ACB11818596BF500A092B4 /* UITableView+Frames.h */, 214 | D0ACB11918596BF500A092B4 /* UITableView+Frames.m */, 215 | ); 216 | path = RSTransitionEffect; 217 | sourceTree = SOURCE_ROOT; 218 | }; 219 | D0ACB12518596D6200A092B4 /* Images */ = { 220 | isa = PBXGroup; 221 | children = ( 222 | D0ACB12618596D6200A092B4 /* images-1.jpeg */, 223 | D0ACB12718596D6200A092B4 /* images-10.jpeg */, 224 | D0ACB12818596D6200A092B4 /* images-2.jpeg */, 225 | D0ACB12918596D6200A092B4 /* images-3.jpeg */, 226 | D0ACB12A18596D6200A092B4 /* images-4.jpeg */, 227 | D0ACB12B18596D6200A092B4 /* images-5.jpeg */, 228 | D0ACB12C18596D6200A092B4 /* images-6.jpeg */, 229 | D0ACB12D18596D6200A092B4 /* images-7.jpeg */, 230 | D0ACB12E18596D6200A092B4 /* images-8.jpeg */, 231 | D0ACB12F18596D6200A092B4 /* images-9.jpeg */, 232 | D0ACB13018596D6200A092B4 /* temp.png */, 233 | ); 234 | path = Images; 235 | sourceTree = ""; 236 | }; 237 | /* End PBXGroup section */ 238 | 239 | /* Begin PBXNativeTarget section */ 240 | D0ACB0DA18596BB600A092B4 /* RSTransitionEffectSample */ = { 241 | isa = PBXNativeTarget; 242 | buildConfigurationList = D0ACB10D18596BB600A092B4 /* Build configuration list for PBXNativeTarget "RSTransitionEffectSample" */; 243 | buildPhases = ( 244 | D0ACB0D718596BB600A092B4 /* Sources */, 245 | D0ACB0D818596BB600A092B4 /* Frameworks */, 246 | D0ACB0D918596BB600A092B4 /* Resources */, 247 | ); 248 | buildRules = ( 249 | ); 250 | dependencies = ( 251 | ); 252 | name = RSTransitionEffectSample; 253 | productName = RSTransitionEffectSample; 254 | productReference = D0ACB0DB18596BB600A092B4 /* RSTransitionEffectSample.app */; 255 | productType = "com.apple.product-type.application"; 256 | }; 257 | D0ACB0FB18596BB600A092B4 /* RSTransitionEffectSampleTests */ = { 258 | isa = PBXNativeTarget; 259 | buildConfigurationList = D0ACB11018596BB600A092B4 /* Build configuration list for PBXNativeTarget "RSTransitionEffectSampleTests" */; 260 | buildPhases = ( 261 | D0ACB0F818596BB600A092B4 /* Sources */, 262 | D0ACB0F918596BB600A092B4 /* Frameworks */, 263 | D0ACB0FA18596BB600A092B4 /* Resources */, 264 | ); 265 | buildRules = ( 266 | ); 267 | dependencies = ( 268 | D0ACB10218596BB600A092B4 /* PBXTargetDependency */, 269 | ); 270 | name = RSTransitionEffectSampleTests; 271 | productName = RSTransitionEffectSampleTests; 272 | productReference = D0ACB0FC18596BB600A092B4 /* RSTransitionEffectSampleTests.xctest */; 273 | productType = "com.apple.product-type.bundle.unit-test"; 274 | }; 275 | /* End PBXNativeTarget section */ 276 | 277 | /* Begin PBXProject section */ 278 | D0ACB0D318596BB600A092B4 /* Project object */ = { 279 | isa = PBXProject; 280 | attributes = { 281 | CLASSPREFIX = RS; 282 | LastUpgradeCheck = 0600; 283 | ORGANIZATIONNAME = P.D.Q.; 284 | TargetAttributes = { 285 | D0ACB0FB18596BB600A092B4 = { 286 | TestTargetID = D0ACB0DA18596BB600A092B4; 287 | }; 288 | }; 289 | }; 290 | buildConfigurationList = D0ACB0D618596BB600A092B4 /* Build configuration list for PBXProject "RSTransitionEffectSample" */; 291 | compatibilityVersion = "Xcode 3.2"; 292 | developmentRegion = English; 293 | hasScannedForEncodings = 0; 294 | knownRegions = ( 295 | en, 296 | Base, 297 | ); 298 | mainGroup = D0ACB0D218596BB600A092B4; 299 | productRefGroup = D0ACB0DC18596BB600A092B4 /* Products */; 300 | projectDirPath = ""; 301 | projectRoot = ""; 302 | targets = ( 303 | D0ACB0DA18596BB600A092B4 /* RSTransitionEffectSample */, 304 | D0ACB0FB18596BB600A092B4 /* RSTransitionEffectSampleTests */, 305 | ); 306 | }; 307 | /* End PBXProject section */ 308 | 309 | /* Begin PBXResourcesBuildPhase section */ 310 | D0ACB0D918596BB600A092B4 /* Resources */ = { 311 | isa = PBXResourcesBuildPhase; 312 | buildActionMask = 2147483647; 313 | files = ( 314 | D0ACB13318596D6200A092B4 /* images-2.jpeg in Resources */, 315 | D0ACB13518596D6200A092B4 /* images-4.jpeg in Resources */, 316 | D0ACB0F718596BB600A092B4 /* Images.xcassets in Resources */, 317 | D0ACB0E918596BB600A092B4 /* InfoPlist.strings in Resources */, 318 | D0ACB13218596D6200A092B4 /* images-10.jpeg in Resources */, 319 | D0ACB12418596C8400A092B4 /* SampleData.plist in Resources */, 320 | D0ACB0F218596BB600A092B4 /* Main.storyboard in Resources */, 321 | D0ACB13A18596D6200A092B4 /* images-9.jpeg in Resources */, 322 | D0ACB13918596D6200A092B4 /* images-8.jpeg in Resources */, 323 | D0ACB13818596D6200A092B4 /* images-7.jpeg in Resources */, 324 | D0ACB13718596D6200A092B4 /* images-6.jpeg in Resources */, 325 | D0ACB13B18596D6200A092B4 /* temp.png in Resources */, 326 | D0ACB13118596D6200A092B4 /* images-1.jpeg in Resources */, 327 | D0ACB13418596D6200A092B4 /* images-3.jpeg in Resources */, 328 | D0ACB13618596D6200A092B4 /* images-5.jpeg in Resources */, 329 | ); 330 | runOnlyForDeploymentPostprocessing = 0; 331 | }; 332 | D0ACB0FA18596BB600A092B4 /* Resources */ = { 333 | isa = PBXResourcesBuildPhase; 334 | buildActionMask = 2147483647; 335 | files = ( 336 | D0ACB10818596BB600A092B4 /* InfoPlist.strings in Resources */, 337 | ); 338 | runOnlyForDeploymentPostprocessing = 0; 339 | }; 340 | /* End PBXResourcesBuildPhase section */ 341 | 342 | /* Begin PBXSourcesBuildPhase section */ 343 | D0ACB0D718596BB600A092B4 /* Sources */ = { 344 | isa = PBXSourcesBuildPhase; 345 | buildActionMask = 2147483647; 346 | files = ( 347 | D0ACB12218596C4200A092B4 /* RSTableViewController.m in Sources */, 348 | 551AA61D19E79B6500B03577 /* RSCustomCell.m in Sources */, 349 | D0ACB12118596C4200A092B4 /* RSDetailViewController.m in Sources */, 350 | D0ACB11B18596BF500A092B4 /* RSTransitionEffectViewController.m in Sources */, 351 | D0ACB11C18596BF500A092B4 /* UITableView+Frames.m in Sources */, 352 | D0ACB0EB18596BB600A092B4 /* main.m in Sources */, 353 | D0ACB0EF18596BB600A092B4 /* RSAppDelegate.m in Sources */, 354 | 551AA62019E79B8B00B03577 /* RSCustomTable.m in Sources */, 355 | D0ACB11A18596BF500A092B4 /* RSBasicItem.m in Sources */, 356 | ); 357 | runOnlyForDeploymentPostprocessing = 0; 358 | }; 359 | D0ACB0F818596BB600A092B4 /* Sources */ = { 360 | isa = PBXSourcesBuildPhase; 361 | buildActionMask = 2147483647; 362 | files = ( 363 | D0ACB10A18596BB600A092B4 /* RSTransitionEffectSampleTests.m in Sources */, 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | /* End PBXSourcesBuildPhase section */ 368 | 369 | /* Begin PBXTargetDependency section */ 370 | D0ACB10218596BB600A092B4 /* PBXTargetDependency */ = { 371 | isa = PBXTargetDependency; 372 | target = D0ACB0DA18596BB600A092B4 /* RSTransitionEffectSample */; 373 | targetProxy = D0ACB10118596BB600A092B4 /* PBXContainerItemProxy */; 374 | }; 375 | /* End PBXTargetDependency section */ 376 | 377 | /* Begin PBXVariantGroup section */ 378 | D0ACB0E718596BB600A092B4 /* InfoPlist.strings */ = { 379 | isa = PBXVariantGroup; 380 | children = ( 381 | D0ACB0E818596BB600A092B4 /* en */, 382 | ); 383 | name = InfoPlist.strings; 384 | sourceTree = ""; 385 | }; 386 | D0ACB0F018596BB600A092B4 /* Main.storyboard */ = { 387 | isa = PBXVariantGroup; 388 | children = ( 389 | D0ACB0F118596BB600A092B4 /* Base */, 390 | ); 391 | name = Main.storyboard; 392 | sourceTree = ""; 393 | }; 394 | D0ACB10618596BB600A092B4 /* InfoPlist.strings */ = { 395 | isa = PBXVariantGroup; 396 | children = ( 397 | D0ACB10718596BB600A092B4 /* en */, 398 | ); 399 | name = InfoPlist.strings; 400 | sourceTree = ""; 401 | }; 402 | /* End PBXVariantGroup section */ 403 | 404 | /* Begin XCBuildConfiguration section */ 405 | D0ACB10B18596BB600A092B4 /* Debug */ = { 406 | isa = XCBuildConfiguration; 407 | buildSettings = { 408 | ALWAYS_SEARCH_USER_PATHS = NO; 409 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 410 | CLANG_CXX_LIBRARY = "libc++"; 411 | CLANG_ENABLE_MODULES = YES; 412 | CLANG_ENABLE_OBJC_ARC = YES; 413 | CLANG_WARN_BOOL_CONVERSION = YES; 414 | CLANG_WARN_CONSTANT_CONVERSION = YES; 415 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 416 | CLANG_WARN_EMPTY_BODY = YES; 417 | CLANG_WARN_ENUM_CONVERSION = YES; 418 | CLANG_WARN_INT_CONVERSION = YES; 419 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 420 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 421 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 422 | COPY_PHASE_STRIP = NO; 423 | GCC_C_LANGUAGE_STANDARD = gnu99; 424 | GCC_DYNAMIC_NO_PIC = NO; 425 | GCC_OPTIMIZATION_LEVEL = 0; 426 | GCC_PREPROCESSOR_DEFINITIONS = ( 427 | "DEBUG=1", 428 | "$(inherited)", 429 | ); 430 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 431 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 432 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 433 | GCC_WARN_UNDECLARED_SELECTOR = YES; 434 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 435 | GCC_WARN_UNUSED_FUNCTION = YES; 436 | GCC_WARN_UNUSED_VARIABLE = YES; 437 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 438 | ONLY_ACTIVE_ARCH = YES; 439 | SDKROOT = iphoneos; 440 | }; 441 | name = Debug; 442 | }; 443 | D0ACB10C18596BB600A092B4 /* Release */ = { 444 | isa = XCBuildConfiguration; 445 | buildSettings = { 446 | ALWAYS_SEARCH_USER_PATHS = NO; 447 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 448 | CLANG_CXX_LIBRARY = "libc++"; 449 | CLANG_ENABLE_MODULES = YES; 450 | CLANG_ENABLE_OBJC_ARC = YES; 451 | CLANG_WARN_BOOL_CONVERSION = YES; 452 | CLANG_WARN_CONSTANT_CONVERSION = YES; 453 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 454 | CLANG_WARN_EMPTY_BODY = YES; 455 | CLANG_WARN_ENUM_CONVERSION = YES; 456 | CLANG_WARN_INT_CONVERSION = YES; 457 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 458 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 459 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 460 | COPY_PHASE_STRIP = YES; 461 | ENABLE_NS_ASSERTIONS = NO; 462 | GCC_C_LANGUAGE_STANDARD = gnu99; 463 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 464 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 465 | GCC_WARN_UNDECLARED_SELECTOR = YES; 466 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 467 | GCC_WARN_UNUSED_FUNCTION = YES; 468 | GCC_WARN_UNUSED_VARIABLE = YES; 469 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 470 | SDKROOT = iphoneos; 471 | VALIDATE_PRODUCT = YES; 472 | }; 473 | name = Release; 474 | }; 475 | D0ACB10E18596BB600A092B4 /* Debug */ = { 476 | isa = XCBuildConfiguration; 477 | buildSettings = { 478 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 479 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 480 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 481 | GCC_PREFIX_HEADER = "RSTransitionEffectSample/RSTransitionEffectSample-Prefix.pch"; 482 | INFOPLIST_FILE = "RSTransitionEffectSample/RSTransitionEffectSample-Info.plist"; 483 | PRODUCT_NAME = "$(TARGET_NAME)"; 484 | PROVISIONING_PROFILE = "9c0c34ae-7d8d-418c-a199-7e9a6a25e233"; 485 | WRAPPER_EXTENSION = app; 486 | }; 487 | name = Debug; 488 | }; 489 | D0ACB10F18596BB600A092B4 /* Release */ = { 490 | isa = XCBuildConfiguration; 491 | buildSettings = { 492 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 493 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 494 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 495 | GCC_PREFIX_HEADER = "RSTransitionEffectSample/RSTransitionEffectSample-Prefix.pch"; 496 | INFOPLIST_FILE = "RSTransitionEffectSample/RSTransitionEffectSample-Info.plist"; 497 | PRODUCT_NAME = "$(TARGET_NAME)"; 498 | PROVISIONING_PROFILE = "9c0c34ae-7d8d-418c-a199-7e9a6a25e233"; 499 | WRAPPER_EXTENSION = app; 500 | }; 501 | name = Release; 502 | }; 503 | D0ACB11118596BB600A092B4 /* Debug */ = { 504 | isa = XCBuildConfiguration; 505 | buildSettings = { 506 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/RSTransitionEffectSample.app/RSTransitionEffectSample"; 507 | FRAMEWORK_SEARCH_PATHS = ( 508 | "$(SDKROOT)/Developer/Library/Frameworks", 509 | "$(inherited)", 510 | "$(DEVELOPER_FRAMEWORKS_DIR)", 511 | ); 512 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 513 | GCC_PREFIX_HEADER = "RSTransitionEffectSample/RSTransitionEffectSample-Prefix.pch"; 514 | GCC_PREPROCESSOR_DEFINITIONS = ( 515 | "DEBUG=1", 516 | "$(inherited)", 517 | ); 518 | INFOPLIST_FILE = "RSTransitionEffectSampleTests/RSTransitionEffectSampleTests-Info.plist"; 519 | PRODUCT_NAME = "$(TARGET_NAME)"; 520 | TEST_HOST = "$(BUNDLE_LOADER)"; 521 | WRAPPER_EXTENSION = xctest; 522 | }; 523 | name = Debug; 524 | }; 525 | D0ACB11218596BB600A092B4 /* Release */ = { 526 | isa = XCBuildConfiguration; 527 | buildSettings = { 528 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/RSTransitionEffectSample.app/RSTransitionEffectSample"; 529 | FRAMEWORK_SEARCH_PATHS = ( 530 | "$(SDKROOT)/Developer/Library/Frameworks", 531 | "$(inherited)", 532 | "$(DEVELOPER_FRAMEWORKS_DIR)", 533 | ); 534 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 535 | GCC_PREFIX_HEADER = "RSTransitionEffectSample/RSTransitionEffectSample-Prefix.pch"; 536 | INFOPLIST_FILE = "RSTransitionEffectSampleTests/RSTransitionEffectSampleTests-Info.plist"; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | TEST_HOST = "$(BUNDLE_LOADER)"; 539 | WRAPPER_EXTENSION = xctest; 540 | }; 541 | name = Release; 542 | }; 543 | /* End XCBuildConfiguration section */ 544 | 545 | /* Begin XCConfigurationList section */ 546 | D0ACB0D618596BB600A092B4 /* Build configuration list for PBXProject "RSTransitionEffectSample" */ = { 547 | isa = XCConfigurationList; 548 | buildConfigurations = ( 549 | D0ACB10B18596BB600A092B4 /* Debug */, 550 | D0ACB10C18596BB600A092B4 /* Release */, 551 | ); 552 | defaultConfigurationIsVisible = 0; 553 | defaultConfigurationName = Release; 554 | }; 555 | D0ACB10D18596BB600A092B4 /* Build configuration list for PBXNativeTarget "RSTransitionEffectSample" */ = { 556 | isa = XCConfigurationList; 557 | buildConfigurations = ( 558 | D0ACB10E18596BB600A092B4 /* Debug */, 559 | D0ACB10F18596BB600A092B4 /* Release */, 560 | ); 561 | defaultConfigurationIsVisible = 0; 562 | defaultConfigurationName = Release; 563 | }; 564 | D0ACB11018596BB600A092B4 /* Build configuration list for PBXNativeTarget "RSTransitionEffectSampleTests" */ = { 565 | isa = XCConfigurationList; 566 | buildConfigurations = ( 567 | D0ACB11118596BB600A092B4 /* Debug */, 568 | D0ACB11218596BB600A092B4 /* Release */, 569 | ); 570 | defaultConfigurationIsVisible = 0; 571 | defaultConfigurationName = Release; 572 | }; 573 | /* End XCConfigurationList section */ 574 | }; 575 | rootObject = D0ACB0D318596BB600A092B4 /* Project object */; 576 | } 577 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/project.xcworkspace/xcshareddata/RSTransitionEffectSample.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | BB0CA822-ABCE-467B-8AC0-1D0DD145D6D9 9 | IDESourceControlProjectName 10 | RSTransitionEffectSample 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | A778F0739D398E9A158CFECE7F66DF6BD4928560 14 | github.com:mukyasa/MMConstraintTransition.git 15 | 16 | IDESourceControlProjectPath 17 | RSTransitionEffectSample.xcodeproj 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | A778F0739D398E9A158CFECE7F66DF6BD4928560 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | github.com:mukyasa/MMConstraintTransition.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | A778F0739D398E9A158CFECE7F66DF6BD4928560 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | A778F0739D398E9A158CFECE7F66DF6BD4928560 36 | IDESourceControlWCCName 37 | MMConstraintTransition 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/project.xcworkspace/xcuserdata/R0CKSTAR.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample.xcodeproj/project.xcworkspace/xcuserdata/R0CKSTAR.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/project.xcworkspace/xcuserdata/mukeshmandora.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample.xcodeproj/project.xcworkspace/xcuserdata/mukeshmandora.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/project.xcworkspace/xcuserdata/mukeshmandora.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges 6 | 7 | SnapshotAutomaticallyBeforeSignificantChanges 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/xcuserdata/R0CKSTAR.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/xcuserdata/R0CKSTAR.xcuserdatad/xcschemes/RSTransitionEffectSample.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/xcuserdata/R0CKSTAR.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | RSTransitionEffectSample.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | D0ACB0DA18596BB600A092B4 16 | 17 | primary 18 | 19 | 20 | D0ACB0FB18596BB600A092B4 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/xcuserdata/mukeshmandora.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/xcuserdata/mukeshmandora.xcuserdatad/xcschemes/RSTransitionEffectSample.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 93 | 94 | 100 | 101 | 102 | 103 | 105 | 106 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /RSTransitionEffectSample.xcodeproj/xcuserdata/mukeshmandora.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | RSTransitionEffectSample.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | D0ACB0DA18596BB600A092B4 16 | 17 | primary 18 | 19 | 20 | D0ACB0FB18596BB600A092B4 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 32 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 81 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "60x60", 21 | "scale" : "3x" 22 | } 23 | ], 24 | "info" : { 25 | "version" : 1, 26 | "author" : "xcode" 27 | } 28 | } -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-1.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-10.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-2.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-3.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-4.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-5.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-6.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-7.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-8.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/images-9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/images-9.jpeg -------------------------------------------------------------------------------- /RSTransitionEffectSample/Images/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mukyasa/MMTransitionEffect/58a1a3b43b95ffb9df3014c1d0a1971247cabb02/RSTransitionEffectSample/Images/temp.png -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSAppDelegate.h 3 | // RSTransitionEffectSample 4 | // 5 | // Created by R0CKSTAR on 12/12/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSAppDelegate.m 3 | // RSTransitionEffectSample 4 | // 5 | // Created by R0CKSTAR on 12/12/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSAppDelegate.h" 10 | 11 | @implementation RSAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 22 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSDetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSDetailViewController.h 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSTransitionEffectViewController.h" 10 | 11 | @interface RSDetailViewController : RSTransitionEffectViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSDetailViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSDetailViewController.m 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSDetailViewController.h" 10 | 11 | @interface RSDetailViewController () 12 | 13 | @end 14 | 15 | @implementation RSDetailViewController 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSTableViewController.h 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSTableViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSTableViewController.m 3 | // RSTransitionEffect 4 | // 5 | // Created by R0CKSTAR on 12/11/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSTableViewController.h" 10 | 11 | #import "UITableView+Frames.h" 12 | 13 | #import "RSDetailViewController.h" 14 | 15 | #import "RSBasicItem.h" 16 | 17 | @interface RSTableViewController () 18 | 19 | @property (nonatomic, strong) NSMutableArray *items; 20 | 21 | @end 22 | 23 | @implementation RSTableViewController 24 | 25 | - (NSMutableArray *)items 26 | { 27 | if (!_items) { 28 | _items = [[NSMutableArray alloc] init]; 29 | } 30 | return _items; 31 | } 32 | 33 | - (void)viewDidLoad 34 | { 35 | [super viewDidLoad]; 36 | 37 | @autoreleasepool { 38 | NSString *path = [[NSBundle mainBundle] pathForResource:@"SampleData" ofType:@"plist"]; 39 | NSArray *items = [[[NSDictionary alloc] initWithContentsOfFile:path] objectForKey:@"Data"]; 40 | for (NSDictionary *dict in items) { 41 | RSBasicItem *item = [[RSBasicItem alloc] init]; 42 | item.image = [UIImage imageNamed:[dict objectForKey:@"Image"]]; 43 | item.text = [dict objectForKey:@"Place"]; 44 | item.detailText = [dict objectForKey:@"Country"]; 45 | [self.items addObject:item]; 46 | } 47 | } 48 | } 49 | 50 | #pragma mark - Table view data source 51 | 52 | - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 53 | { 54 | return 1; 55 | } 56 | 57 | - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 58 | { 59 | return 10; 60 | } 61 | 62 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 63 | { 64 | static NSString *CellIdentifier = @"Cell"; 65 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; 66 | 67 | // Configure the cell... 68 | RSBasicItem *item = [self.items objectAtIndex:[indexPath row]]; 69 | 70 | cell.imageView.image = item.image; 71 | cell.textLabel.text = item.text; 72 | cell.detailTextLabel.text = item.detailText; 73 | 74 | return cell; 75 | } 76 | 77 | #pragma mark - Table view delegate 78 | 79 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 80 | { 81 | [tableView deselectRowAtIndexPath:indexPath animated:YES]; 82 | 83 | RSDetailViewController *viewController = [self.storyboard instantiateViewControllerWithIdentifier:@"detail"]; 84 | viewController.sourceFrames = [tableView framesForRowAtIndexPath:indexPath]; 85 | viewController.item = [self.items objectAtIndex:[indexPath row]]; 86 | viewController.animationDuration = 0.8f; 87 | [self.navigationController pushViewController:viewController animated:NO]; 88 | } 89 | 90 | @end 91 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSTransitionEffectSample-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | com.pdq.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/RSTransitionEffectSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/SampleData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Data 6 | 7 | 8 | Image 9 | images-1.jpeg 10 | Place 11 | Barcelona 12 | Country 13 | Spain 14 | 15 | 16 | Image 17 | images-2.jpeg 18 | Place 19 | Cape Town 20 | Country 21 | South Africa 22 | 23 | 24 | Image 25 | images-3.jpeg 26 | Place 27 | Delhi 28 | Country 29 | India 30 | 31 | 32 | Image 33 | images-4.jpeg 34 | Place 35 | Berlin 36 | Country 37 | Germany 38 | 39 | 40 | Image 41 | images-5.jpeg 42 | Place 43 | Athens 44 | Country 45 | Greece 46 | 47 | 48 | Image 49 | images-6.jpeg 50 | Place 51 | Dublin 52 | Country 53 | Ireland 54 | 55 | 56 | Image 57 | images-7.jpeg 58 | Place 59 | Amsterdam 60 | Country 61 | Netherlands 62 | 63 | 64 | Image 65 | images-8.jpeg 66 | Place 67 | Zurich 68 | Country 69 | Switzerland 70 | 71 | 72 | Image 73 | images-9.jpeg 74 | Place 75 | Prague 76 | Country 77 | Czech Republic 78 | 79 | 80 | Image 81 | images-10.jpeg 82 | Place 83 | Paris 84 | Country 85 | France 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RSTransitionEffectSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RSTransitionEffectSample 4 | // 5 | // Created by R0CKSTAR on 12/12/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "RSAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([RSAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /RSTransitionEffectSampleTests/RSTransitionEffectSampleTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.pdq.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /RSTransitionEffectSampleTests/RSTransitionEffectSampleTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSTransitionEffectSampleTests.m 3 | // RSTransitionEffectSampleTests 4 | // 5 | // Created by R0CKSTAR on 12/12/13. 6 | // Copyright (c) 2013 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSTransitionEffectSampleTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation RSTransitionEffectSampleTests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /RSTransitionEffectSampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------