Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/regex/19.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Objective c 无法设置UITableViewCell的帧';s内容视图_Objective C_Uitableview - Fatal编程技术网

Objective c 无法设置UITableViewCell的帧';s内容视图

Objective c 无法设置UITableViewCell的帧';s内容视图,objective-c,uitableview,Objective C,Uitableview,我正在尝试设置UITableViewCell的contentView的偏移量。但失败了。如图所示,没有偏移 相应的代码如下所示 MyCell.m #import "MyCell.h" @implementation MyCell - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reus

我正在尝试设置UITableViewCell的contentView的偏移量。但失败了。如图所示,没有偏移

相应的代码如下所示

MyCell.m

#import "MyCell.h"

@implementation MyCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    // Initialization code
    UIView *backGroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    [backGroundView setBackgroundColor:[UIColor grayColor]];
    [self addSubview:backGroundView];

    UIView *frontView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    [frontView setBackgroundColor:[UIColor greenColor]];

    UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    myLabel.text = @"My Cell";
    myLabel.backgroundColor = [UIColor clearColor];
    [myLabel setTextAlignment:UITextAlignmentCenter];
    [frontView addSubview:myLabel];

    [self.contentView addSubview:frontView];


    [self bringSubviewToFront:self.contentView];

}
return self;
}
#import "MyTableViewController.h"

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"MyCell";

MyCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[MyCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

CGPoint center = cell.center;
center.x = cell.contentView.bounds.size.width/2 - 20;
[cell.contentView setCenter:center];

NSLog(@"origin.x :%f ,y :%f, width :%f, height :%f",cell.contentView.frame.origin.x, cell.contentView.frame.origin.y, cell.contentView.frame.size.width,cell.contentView.frame.size.height);

return cell;
}
MyTableViewController.m

#import "MyCell.h"

@implementation MyCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    // Initialization code
    UIView *backGroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    [backGroundView setBackgroundColor:[UIColor grayColor]];
    [self addSubview:backGroundView];

    UIView *frontView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    [frontView setBackgroundColor:[UIColor greenColor]];

    UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    myLabel.text = @"My Cell";
    myLabel.backgroundColor = [UIColor clearColor];
    [myLabel setTextAlignment:UITextAlignmentCenter];
    [frontView addSubview:myLabel];

    [self.contentView addSubview:frontView];


    [self bringSubviewToFront:self.contentView];

}
return self;
}
#import "MyTableViewController.h"

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"MyCell";

MyCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[MyCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

CGPoint center = cell.center;
center.x = cell.contentView.bounds.size.width/2 - 20;
[cell.contentView setCenter:center];

NSLog(@"origin.x :%f ,y :%f, width :%f, height :%f",cell.contentView.frame.origin.x, cell.contentView.frame.origin.y, cell.contentView.frame.size.width,cell.contentView.frame.size.height);

return cell;
}
日志

2012-08-31 18:29:34.075 TableViewCellOffsetTest[16169:207] origin.x :-20.000000 ,y :0.000000, width :320.000000, height :44.000000

向我们显示与[cell.contentView setCenter:center]相关的代码;我怀疑你想移动牢房的主视图。我不会这样做,我会添加一个子视图,并将其偏移,然后将您的内容视图添加到其中。由于您已经在使用自定义方法,所有更改都需要在那里进行。此外,值得注意的是,您还希望在每次重复使用时重置单元格偏移量,因为您最终会将内容移动得越来越远。

向我们展示与[cell.contentView setCenter:center]相关的代码;我怀疑你想移动牢房的主视图。我不会这样做,我会添加一个子视图,并将其偏移,然后将您的内容视图添加到其中。由于您已经在使用自定义方法,所有更改都需要在那里进行。此外,值得注意的是,每次重复使用单元格偏移量时,您也会希望重置单元格偏移量,因为您最终会将内容移动得越来越远。

我不理解“尝试设置contentView的偏移量”的含义-您的代码中没有任何关于偏移量的内容…请向我们展示您与[cell.contentView setCenter:center];@user387184实际上我想拖动cell.contentView horizontall我不明白“尝试设置contentView的偏移量”是什么意思-您的代码中没有任何关于偏移量的内容…请向我们展示与[cell.contentView setCenter:center]相关的代码;@user387184实际上我想拖动单元格。contentView horizontallycenter是cell的属性。contentView.center是cell.contentView的属性。