35 lines
949 B
Objective-C
35 lines
949 B
Objective-C
//
|
|
// MineKanEditSec2SecCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/11/10.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "MineKanEditSec2SecCell.h"
|
|
|
|
@implementation MineKanEditSec2SecCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
|
|
self.plachoderlabel=[[UILabel alloc]initWithFrame:CGRectMake(10,0,300,40)];
|
|
self.plachoderlabel.numberOfLines=0;
|
|
self.plachoderlabel.enabled=NO;
|
|
|
|
self.plachoderlabel.text=@"请在此输入爱鱼宣言";
|
|
self.plachoderlabel.textColor=[UIColor colorWithRed:153.0/256.0 green:153.0/256.0 blue:153/256.0 alpha:1];
|
|
self.plachoderlabel.font=[UIFont fontWithName:@"Arial Rounded MT Bold" size:17];
|
|
[self.xuanYanFiled addSubview:self.plachoderlabel];
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|