#import <UIKit/UIKit.h>
@interface LTView : UIView
#warning 創建需要的屬性
@property (nonatomic, retain) UILabel *mLabel;
@property (nonatomic ,retain) UITextField *mTextField;
@end
#import "LTView.h"
@implementation LTView
#warning 第一步,重寫初始化方法
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self createMyView];
}
return self;
}
#warning 第三步,創建視圖
- (void)createMyView
{
//初始化我們定義的屬性
self.mLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 70, 50)];
self.mLabel.backgroundColor = [UIColor greenColor];
[self addSubview:self.mLabel];
[_mLabel release];
self.mTextField = [[UITextField alloc]initWithFrame:CGRectMake(90, 10, 230, 50)];
self.mTextField.backgroundColor = [UIColor yellowColor];
[self addSubview:self.mTextField];
[_mTextField release];
}
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (void)dealloc
{
[_window release];
[super dealloc];
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
[_window release];
LTView *mView = [[LTView alloc]initWithFrame:CGRectMake(10, 100, 340, 70)];
mView.backgroundColor = [UIColor grayColor];
[self.window addSubview:mView];
[mView release];
return YES;
}
另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
分享題目:自定義視圖窗口控件-創新互聯
本文來源:http://m.2m8n56k.cn/article48/dhpchp.html
成都網站建設公司_創新互聯,為您提供網站策劃、網站導航、靜態網站、網站營銷、Google、小程序開發
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:[email protected]。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯