iOS--xuer(registration)

来源:http://www.cnblogs.com/bolin-123/archive/2016/04/06/5361397.html
-Advertisement-
Play Games

這個登錄頁麵包含了自適應屏幕的大小,數字用戶登錄鍵盤是數字鍵盤、隱藏鍵盤、隱藏密碼等等。 ViewController.h ViewController.m 運行效果圖: 2016-04-06 22:22:01 ...


這個登錄頁麵包含了自適應屏幕的大小,數字用戶登錄鍵盤是數字鍵盤、隱藏鍵盤、隱藏密碼等等。

ViewController.h


 

#import <UIKit/UIKit.h>
#import "UIViewExt.h"
@interface ViewController : UIViewController<UITextFieldDelegate>
/**
 *  背景圖片
 */
@property(strong,nonatomic) UIImageView *Imagebackgroud;
/**
 *  用戶名輸入框
 */
@property(strong,nonatomic) UITextField *NameTextfild;
/**
 *  密碼輸入框
 */
@property(strong,nonatomic) UITextField *PasswordTextfild;
/**
 *  登錄按鈕
 */
@property(strong,nonatomic) UIButton *LoginButton;
/**
 *  註冊按鈕
 */
@property(strong,nonatomic) UIButton *RegistrationButton;

@end

 

ViewController.m


 

#import "ViewController.h"
#define WIDTH   self.view.width
#define HEIGHT  self.view.height

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self setBackgroudImage];
    [self setLoginImage];
    [self setTextFiled];
    [self setButton];
}
#pragma Mark - 設置背景圖的方法
-(void)setBackgroudImage
{
    self.Imagebackgroud=[[UIImageView alloc] initWithFrame:self.view.frame];
    [self.Imagebackgroud setImage:[UIImage imageNamed:@"beijing"]];
    [self.view addSubview:self.Imagebackgroud];
}

#pragma Mark - 設置輸入框
-(void)setTextFiled
{
    // 用戶名輸入框設置
    self.NameTextfild=[[UITextField alloc] initWithFrame:CGRectMake(WIDTH *0.1, HEIGHT *0.2, WIDTH*0.8, HEIGHT*0.05)];
    self.NameTextfild.backgroundColor=[UIColor clearColor];
    self.NameTextfild.placeholder=@"請輸入手機號";
    // 設置輸入鍵盤為數字鍵盤
    self.NameTextfild.keyboardType=UIKeyboardTypeNumberPad;
    // 設置輸入框內的圖標  預設為不顯示
    self.NameTextfild.leftView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"phoneIcon"]];
    self.NameTextfild.leftViewMode=UITextFieldViewModeAlways;
    [self.view addSubview:self.NameTextfild];
    // 設置用戶名輸入框下的線
    UIView *Nameview=[[UIView alloc]initWithFrame:CGRectMake(WIDTH *0.1, HEIGHT *0.2+HEIGHT*0.05,WIDTH*0.8, 1)];
    Nameview.backgroundColor=[UIColor whiteColor];
    [self.view addSubview:Nameview];

    // 密碼輸入框設置
    self.PasswordTextfild=[[UITextField alloc] initWithFrame:CGRectMake(WIDTH *0.1,HEIGHT*0.2+HEIGHT*0.06, WIDTH*0.8, HEIGHT*0.05)];
    self.PasswordTextfild.backgroundColor=[UIColor clearColor];
    self.PasswordTextfild.placeholder=@"請輸入密碼";
    // 設置輸入密碼保護(隱藏密碼)
    self.PasswordTextfild.secureTextEntry=YES;
    // 設置單擊return隱藏鍵盤需要代理
    self.PasswordTextfild.delegate=self;
    // 設置輸入框內的圖標  預設為不顯示
    self.PasswordTextfild.leftView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"passwordIcon"]];
    self.PasswordTextfild.leftViewMode=UITextFieldViewModeAlways;
    [self.view addSubview:self.PasswordTextfild];
    // 設置密碼輸入框下的線
    UIView *Passwordview=[[UIView alloc]initWithFrame:CGRectMake(WIDTH *0.1,HEIGHT*0.31,WIDTH*0.8, 1)];
    Passwordview.backgroundColor=[UIColor whiteColor];
    [self.view addSubview:Passwordview];
}

#pragma Mark -按鈕設置方法
-(void)setButton
{
    // 登錄按鈕設置
    self.LoginButton=[[UIButton alloc] initWithFrame:CGRectMake(WIDTH *0.1, HEIGHT*0.35, WIDTH *0.8, HEIGHT * 0.08)];
    [self.LoginButton setBackgroundImage:[UIImage imageNamed:@"loginButton"] forState:UIControlStateNormal];
    [self.LoginButton setTitle:@"登錄" forState:UIControlStateNormal];
    [self.view addSubview:self.LoginButton];

    // 註冊按鈕設置
    self.RegistrationButton=[[UIButton alloc] initWithFrame:CGRectMake(WIDTH *0.1, HEIGHT * 0.45, WIDTH *0.8, HEIGHT * 0.08)];
    [self.RegistrationButton setBackgroundImage:[UIImage imageNamed:@"rigisterButton"] forState:UIControlStateNormal];
    [self.RegistrationButton setTitle:@"註冊" forState:UIControlStateNormal];
    [self.RegistrationButton setTitleColor:[UIColor colorWithRed:0.115 green:0.749 blue:0.769 alpha:1.000] forState:UIControlStateNormal];
    [self.view addSubview:self.RegistrationButton];

}

#pragma Mark  - logo圖片設置
-(void)setLoginImage
{
    // 歡迎圖片設置
    UIImageView *welcomeView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"welcome"]];
    welcomeView.frame=CGRectMake(WIDTH *0.1, HEIGHT*0.05, WIDTH *0.8, HEIGHT *0.08);
    [self.view addSubview:welcomeView];

    // logo圖片設置
    UIImageView *LogoView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"logo"]];
    LogoView.frame=CGRectMake(WIDTH*0.4, HEIGHT-HEIGHT*0.08, WIDTH*0.2, HEIGHT*0.03);
    [self.view addSubview:LogoView];

}
#pragma Mark - 設置鍵盤的隱藏
/**
 *  單擊空白處隱藏鍵盤
 *
 *  @param touches 空白處
 *  @param event   單擊
 */
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    if ([self.NameTextfild isFirstResponder]||[self.PasswordTextfild isFirstResponder]) {
        [self.NameTextfild resignFirstResponder];
        [self.PasswordTextfild resignFirstResponder];
    }
}

/**
 *  單擊return隱藏鍵盤
 */
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [self.PasswordTextfild resignFirstResponder];
    return YES;
}
...
@end

 

運行效果圖:

 

2016-04-06 22:22:01


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

-Advertisement-
Play Games
更多相關文章
  • 以下是三個IOS開發中最常用的控制項,作為IOS基礎學習教程知識 ,初學者需要瞭解其基本定義和常用設置,以便在開發在熟練運用。 UIButton按鈕 第一、UIButton的定義 UIButton *button=[[UIButton buttonWithType:(UIButtonType); 能夠 ...
  • 一、響應鏈 在IOS開發中會遇到各種操作事件,通過程式可以對這些事件做出響應。 首先,當發生事件響應時,必須知道由誰來響應事件。在IOS中,由響應者鏈來對事件進行響應,所有事件響應的類都是UIResponder的子類,響應者鏈是一個由不同對象組成的層次結構,其中的每個對象將依次獲得響應事件消息的機會 ...
  • 什麼是廣播 什麼是廣播 生活中的電視頻道、收音機、手機、都有自己的特定廣播,他們不管是否有人關心、收聽等,不管你是否看電視,每個頻道都實施按照自己的進步進行播放、收音機也是!所以我理解的android廣播機制也就是這樣--廣播發佈者只負責把發生的事件發出,至於是否有接聽者或者接聽者接收到怎樣處理並不 ...
  • 原文地址:http://blog.csdn.net/wzzvictory/article/details/18269713 出於安全考慮,iOS系統的沙盒機制規定每個應用都只能訪問當前沙盒目錄下麵的文件(也有例外,比如系統通訊錄能在用戶授權的情況下被第三方應用訪問),這個規則把iOS系統的封閉性展現 ...
  • Android開發獲取相冊圖片的方式網上有很多種,這裡說一個Android4.4後的方法,因為版本越高,一些老的api就會被棄用,新的api和老的api不相容,導致出現很多問題。 比如:managedQuery()現在已經被getContentResolver().query()替代了,不過它們的參 ...
  • 最終效果展示: 首先我們需要一個ViewPager控制項,不過可以發現在左側的控制項列表中並沒有這個控制項 這時我們要去升級包中查看 然後在釐米找到 ViewPager.class 這時我們雙擊這個發現不能查看源代碼 我們可以通過以 android-support-v4.jar.properties 的一 ...
  • 本文轉自:http://www.cnblogs.com/wendingding/p/3763330.html 一、項目結構和plist文件 二、實現代碼 1.說明: 主控制器直接繼承UITableViewController // YYViewController.h // 02-QQ好友列表(基本 ...
  • 主要是用sqlite3來存儲聊天記錄 先導入sqlite3.dylib, 點 Add Other,同時按住shift+command+G, 在彈出的Go to the folder中輸入/usr/lib/libsqlite3.dylib,就OK了。 還需要import<sqlite3.h> 1.ne ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...