iOS--APP 登錄界面圖(xuer)

来源:http://www.cnblogs.com/bolin-123/archive/2016/03/07/5252030.html
-Advertisement-
Play Games

ViewController.h #import "ViewController.h" @interface ViewController () @property(strong,nonatomic)UIImageView *beijing; @property(strong,nonatomic)


ViewController.h 


 

#import "ViewController.h"

@interface ViewController ()

@property(strong,nonatomic)UIImageView *beijing;
@property(strong,nonatomic) UIImageView *welcome;
@property(strong,nonatomic) UIImageView *phoneIcon;
@property(strong,nonatomic)UITextField *Intele;
@property(strong,nonatomic) UIView *InteleView;
@property(strong,nonatomic) UIImageView *passwordIcon;
@property(strong,nonatomic) UITextField *Inpassword;
@property(strong,nonatomic) UIView *InpasswordView;
@property(strong,nonatomic) UIImageView *logo;
@property(strong,nonatomic) UIButton *loginButton;
@property(strong,nonatomic) UIButton *rigisterButton;

@end

 

ViewController.m


@implementation ViewController

- (void)viewDidLoad {
        [super viewDidLoad];
    // 添加父視圖beijing背景圖
    self.beijing=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
    //  插入圖片
    [self.beijing setImage:[UIImage imageNamed:@"beijing"]];
    [self.view addSubview:self.beijing];
    
    //  添加子視圖welcome背景圖
    self.welcome=[[UIImageView alloc] initWithFrame:CGRectMake(57, 36, 318, 58)];
    //  插入圖片
    [self.welcome setImage:[UIImage imageNamed:@"welcome"]];
    //  插入子視圖
    [self.view addSubview:self.welcome];
    
    
    // 添加phoneIcon輸入圖標
    self.phoneIcon=[[UIImageView alloc] initWithFrame:CGRectMake(66, 122, 25, 30)];
    //  插入圖片
    [self.phoneIcon setImage:[UIImage imageNamed:@"phoneIcon"]];
    [self.view addSubview:self.phoneIcon];
    
    // 添加手機號碼輸入框
    self.Intele=[[UITextField alloc] initWithFrame:CGRectMake(99, 122, 267, 40)];
    // 設置隱身字
    self.Intele.placeholder=@"請輸入手機號碼";
    //  設置數字彈出鍵盤
    self.Intele.keyboardType=UIKeyboardTypeNumberPad;
    // 設置無邊框的UITextField
    self.Intele.borderStyle=UITextBorderStyleNone;
    [self.view addSubview:self.Intele];
    self.InteleView=[[UIView alloc] initWithFrame:CGRectMake(66, 160, 300, 1)];
    self.InteleView.backgroundColor=[UIColor whiteColor];
    [self.view addSubview:self.InteleView];
    
    
    // 添加密碼輸入框
    self.Inpassword=[[UITextField alloc] initWithFrame:CGRectMake(99, 182, 267, 40)];
    self.Inpassword.placeholder=@"請輸入密碼";
    self.Inpassword.secureTextEntry=YES;
    self.Inpassword.borderStyle=UITextBorderStyleNone;
    [self.view addSubview:self.Inpassword];
    
    self.InpasswordView=[[UIView alloc] initWithFrame:CGRectMake(66, 213, 300, 1)];
    self.InpasswordView.backgroundColor=[UIColor whiteColor];
    [self.view addSubview:self.InpasswordView];
    
    // 添加passwordIcon輸入圖標
    self.passwordIcon=[[UIImageView alloc] initWithFrame:CGRectMake(66, 182, 25, 30)];
    [self.passwordIcon setImage:[UIImage imageNamed:@"passwordIcon"]];
    [self.view addSubview:self.passwordIcon];
    
    //  添加logo背景圖
    self.logo=[[UIImageView alloc] initWithFrame:CGRectMake(173, 694, 69, 22)];
    [self.logo setImage:[UIImage imageNamed:@"logo"]];
    [self.view addSubview:self.logo];
    
    //  登錄按鈕的相關設置
    self.loginButton=[[UIButton alloc] initWithFrame:CGRectMake(66, 282, 318, 50)];
    [self.loginButton setBackgroundImage:[UIImage imageNamed:@"loginButton"] forState:UIControlStateNormal];
    [self.loginButton setTitle:@"登錄" forState:UIControlStateNormal];
    //  事件監聽
    [self.loginButton addTarget:self action:@selector(hideKeyBoard) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:self.loginButton];
    
    // 註冊按鈕的相關設置
    self.rigisterButton=[[UIButton alloc] initWithFrame:CGRectMake(66, 338, 318, 50)];
    [self.rigisterButton setBackgroundImage:[UIImage imageNamed:@"rigisterButton"] forState:UIControlStateNormal];
    [self.rigisterButton setTitle:@"註冊" forState:UIControlStateNormal];
    
    //  事件監聽
    [self.rigisterButton addTarget:self action:@selector(hideKeyBoard) forControlEvents:UIControlEventTouchUpInside];
    [self.rigisterButton setTitleColor:[UIColor greenColor] forState:UIControlStateNormal];
    [self.view addSubview:self.rigisterButton];
    
}
// 點擊空白區域  隱藏鍵盤
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    [self hideKeyBoard];
}

-(void)hideKeyBoard
{
    if ([self.Intele isFirstResponder]||[self.Inpassword isFirstResponder]){
        [self.Intele resignFirstResponder];
        [self.Inpassword resignFirstResponder];
    }
    
}

運行結果:

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在Archive項目時,出現了“Your build settings specify a provisioning profile with the UUID “”, however, no such provisioning profile was found”的出錯。一直提示指定UUID的pr
  • Fragment 用途:在一個Activity里切換界面,切換界面時只切換Fragment裡面的內容 生命周期方法跟Activity一致,可以理解把其為就是一個Activity 定義佈局文件作為Fragment的顯示內容 //此方法返回的View就會被顯示在Fragment上 @Override p
  • 多媒體概念 文字、圖片、音頻、視頻 電腦圖片大小的計算 圖片大小 = 圖片的總像素 * 每個像素占用的大小 單色圖:每個像素占用1/8個位元組 16色圖:每個像素占用1/2個位元組 256色圖:每個像素占用1個位元組 24點陣圖:每個像素占用3個位元組 載入大圖片到記憶體 Android系統以ARGB表示每個
  • 內容提供者 應用的資料庫是不允許其他應用訪問的 內容提供者的作用就是讓別的應用訪問到你的資料庫 自定義內容提供者,繼承ContentProvider類,重寫增刪改查方法,在方法中寫增刪改查資料庫的代碼,舉例增方法 @Override public Uri insert(Uri uri, Conten
  • 創建第二個Activity 需要在清單文件中為其配置一個activity標簽 標簽中如果帶有這個子節點,則會在系統中多創建一個快捷圖標 <intent-filter> <action android:name="android.intent.action.MAIN" /> <category and
  • 接上篇博文:http://www.cnblogs.com/lance2016/p/5229073.html 上一節課給大家簡單介紹了下android撥號盤的工程概況,今天再向大家剖析一下主界面的佈局實現 先貼上主界面佈局: <?xml version="1.0" encoding="utf-8"?>
  • 什麼是UIScrollView •設備的屏幕大小是極其有限的,因此直接展示在用戶眼前的內容也相當有限 • •當展示的內容較多,超出一個屏幕時,用戶可通過滾動手勢來查看屏幕以外的內容 • •普通的UIView不具備滾動功能,不能顯示過多的內容 • •UIScrollView是一個能夠滾動的視圖控制項,可
  • 前言:本隨筆將對IOS開發的支付功能進行一個概述。 內容大綱: 一、常見的支付方案簡介 二、第三方支付SDK 三、蘋果官方支付方案 四、Web支付方案 正文: 一、常見的支付方案簡介 在微信支付中 微信支付的網址是: https://pay.weixin.qq.com/wiki/doc/api/in
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...