いくつかの UIlabel を持つ非常に単純な customView を作成したいのですが、どうすればよいですか。チュートリアルや提案をいただければ幸いです。私はこれが初めてで、前に試したことはありません。
これをxibで試しました。
@interface MyCustomView : UIView
@property (strong, nonatomic) IBOutlet UILabel *Label;
@end
実装
#import "MyCustomTimer.h"
@implementation MyCustomView
-(id)initWithCoder:(NSCoder *)aDecoder{
if ((self = [super initWithCoder:aDecoder])){
[self addSubview:[[[NSBundle mainBundle] loadNibNamed:@"MyCustomView" owner:self options:nil] objectAtIndex:0]];
}
return self;
}
@end
しかし、私はプログラムでそれを行う必要があります。助けてください。ありがとう