细胞扫描在一个项目中工作但不在另一个项目中工作

时间:2013-07-03 06:05:28

标签: iphone ios xcode uitableview uiscrollview

我从一个项目中获取了源代码并尝试将其实现到我的项目中。不幸的是,它没有用。在分析和重新分析之后,我发现单元格滑动仅适用于源代码文件,但不适用于我的。

我将.h文件复制到我的项目中:

 #import <UIKit/UIKit.h>

@interface DHSwipeAwayCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIScrollView *scrollView;
@property (weak, nonatomic) IBOutlet UIView *leftView;
@property (weak, nonatomic) IBOutlet UIView *rightView;
@property (weak, nonatomic) IBOutlet UIView *centerView;

@end

和.m文件:

#import "DHSwipeAwayCell.h"

@implementation DHSwipeAwayCell

- (void)layoutSubviews
{
[super layoutSubviews];

CGRect frame = self.bounds;
self.scrollView.frame = frame;
self.scrollView.contentSize = CGSizeMake(frame.size.width*3, frame.size.height);

self.leftView.frame = frame;
self.centerView.frame = CGRectOffset(frame, frame.size.width, 0);
self.rightView.frame = CGRectOffset(frame, frame.size.width*2, 0);

[self.scrollView scrollRectToVisible:self.centerView.frame animated:NO];
}

@end

我甚至将完全相同的细胞复制到我的细胞中,但是一旦它进入我的项目,它就停止了工作。我将班级与单元格联系起来。两个视图控制器中的所有内容看起来完全相同。也许我在项目中更改了一些设置?我不确定为什么我在两个项目中都有相同的设置,但只有一个正在工作。

1 个答案:

答案 0 :(得分:1)

就像取消选中“使用Autolayout”按钮一样简单!