0

iOS6用に作ったアプリをiOS7で動かしたので、デザインの見通しが悪くなってしまいました。

私の携帯コードは以下の通りです。

@interface Cell_ClubOffer : UITableViewCell

@property (nonatomic, retain) IBOutlet UILabel *titleName;
@property (nonatomic, retain) IBOutlet UILabel *description;
@property (nonatomic, retain) IBOutlet UILabel *distance;


@property (nonatomic, retain) IBOutlet UIImageView *cellImageView;
@property(nonatomic,retain)IBOutlet UIButton *plainButton;

@property (nonatomic, retain) IBOutlet UIImageView *backImageView;


@end


@implementation Cell_ClubOffer

@synthesize cellImageView;
@synthesize plainButton;
@synthesize backgroundView;
@synthesize backImageView;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
    }
    return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

今、私のセルはiOS6のように見えます

iOS6

そしてiOS7では、次のように見栄えが悪い

iOS7

iOS6からiOS7に移行する適切な方法は何ですか?

4

0 に答える 0