1. 程式人生 > >iOS簡單的登陸介面程式碼

iOS簡單的登陸介面程式碼

- (void)viewDidLoad {
    //新增圖片
    UIImage *firstimage=[UIImage imageNamed:@"700.png"];
    UIImageView *firstiamgeview=[[UIImageView alloc]initWithImage:firstimage];
    [firstiamgeview setFrame:CGRectMake(120, 125, 60, 60)];
    [self.view addSubview:firstiamgeview];

       self.view.backgroundColor=[UIColor grayColor];
    //登陸介面的點選登陸按鈕
    UIButton *logintouch=[UIButton buttonWithType:UIButtonTypeRoundedRect];
    [logintouch setTitle:@"點選登陸" forState:UIControlStateNormal];
    [logintouch setFrame:CGRectMake(100, 400, 100, 30)];
    [logintouch addTarget:self action:@selector(logintouchclicked:) forControlEvents:UIControlEventTouchUpInside];
    logintouch.backgroundColor=[UIColor blueColor];
    [self.view addSubview:logintouch];
    //登陸介面的忘記密碼按鈕
    UIButton *forgetpassword=[UIButton buttonWithType:UIButtonTypeRoundedRect];
    [forgetpassword setTitle:@"忘記密碼" forState:UIControlStateNormal];
    [forgetpassword setFrame:CGRectMake(100, 450, 100, 30)];
    [forgetpassword addTarget:self action:@selector(forgetpasswordclicked:) forControlEvents:UIControlEventTouchUpInside];
    forgetpassword.backgroundColor=[UIColor blueColor];
    [self.view addSubview:forgetpassword];
    //使用者名稱標籤
    UILabel *userlabel=[[UILabel alloc]initWithFrame:CGRectMake(50, 200, 100, 40)];
    
[email protected]
"使用者名稱"; userlabel.font=[UIFont fontWithName:@"" size:13]; userlabel.backgroundColor=[UIColor yellowColor]; [self.view addSubview:userlabel]; //使用者名稱輸入框 UITextField *usertextfield=[[UITextField alloc]initWithFrame:CGRectMake(100, 200, 150, 40)]; usertextfield.secureTextEntry=YES; usertextfield.autocorrectionType=UITextAutocorrectionTypeNo; usertextfield.clearsOnBeginEditing=YES; usertextfield.backgroundColor=[UIColor lightGrayColor];
[email protected]
"請輸入使用者名稱"; usertextfield.font=[UIFont fontWithName:@"Arial" size:13]; usertextfield.delegate=self; [self.view addSubview:usertextfield]; //密碼標籤 UILabel *passwordlabel=[[UILabel alloc]initWithFrame:CGRectMake(50, 250, 100, 40)]; [email protected]" 密碼"; passwordlabel.backgroundColor=[UIColor yellowColor]; passwordlabel.font=[UIFont fontWithName:@"" size:13]; [self.view addSubview:passwordlabel]; //密碼輸入框 UITextField *passwordtextfield=[[UITextField alloc]initWithFrame:CGRectMake(100, 250, 150, 40)]; passwordtextfield.secureTextEntry=YES; passwordtextfield.autocorrectionType=UITextAutocorrectionTypeNo; passwordtextfield.clearsOnBeginEditing=YES; passwordtextfield.backgroundColor=[UIColor lightGrayColor];
[email protected]
"請輸入密碼"; passwordtextfield.font=[UIFont fontWithName:@"arial" size:13]; passwordtextfield.delegate=self; [self.view addSubview:passwordtextfield]; [super viewDidLoad]; // Do any additional setup after loading the view. } -(void)logintouchclicked:(UIButton*)logintouch {//登陸跳轉到主介面按鈕 } -(void)forgetpasswordclicked:(UIButton*)forgetpassword { //忘記密碼跳轉按鈕 } -(BOOL)textFieldShouldReturn:(UITextField *)textField { [textField resignFirstResponder]; return YES; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. }


相關推薦

iOS簡單登陸介面程式碼

- (void)viewDidLoad { //新增圖片 UIImage *firstimage=[UIImage imageNamed:@"700.png"]; UIImageView *firstiamgeview=[[UIImageView a

IOS開發學習筆記六 實現一個簡單登陸介面

首先是要實現的效果圖:demo下載 首先在介面拖拽兩個Label,分別命名為姓名和密碼; 新增一個txtAccount,Text控制元件的placeholder類似於Android的Hint一樣

簡單登陸介面

<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>Login</title></head><body> <h2&

IOS登陸介面Masonry框架

1,登陸介面的設計 2,輸入框(賬號,密碼) 3,點選按鈕框(確認) 一,此章節主要詳細的描述IOS移動開發時,利用Masonry框架佈局,操作寫登陸介面,這樣更美觀直接明瞭。 二,登陸介面在移動開發中也是很常見的一部分,密不可分,體現出了登陸的重要性。 如

用LinearLayout和RelativeLayout分別實現簡單登陸介面

        LinearLayout是最簡單也是最常用的一種佈局方式,它根據orientation 屬性值,將包含的所有控制元件或佈局物件排列在同一個方向:水平或垂直,在這種佈局中,所有的控制元件都是依序排列成一條線。線上性佈局中的控制元件允許有自己的margins和g

安卓UI練習(一)--登陸介面和邏輯程式碼

登陸介面和邏輯程式碼 最近感覺自己安卓方面真的的差的好多,,,但是我覺得自己只有好好每天學習敲程式碼練習,會有收穫的,這周就是重新看了下安卓UI方面的東西,下面是登陸介面的xml和邏輯處理方面的程式碼//參考了好多別人的部落格 效果圖 圖示都是在網上找

一個簡單的密碼登陸介面。C語言

老樣子,直接上程式碼: #include<stdio.h> #include<string.h> int main() { int land(); if (land() == 0) { printf("登入成功!!A麟真帥!!!

轉 Android 帶清除功能的輸入框控制元件ClearEditText,仿IOS的輸入框 登陸介面

今天給大家帶來一個很實用的小控制元件ClearEditText,就是在Android系統的輸入框右邊加入一個小圖示,點選小圖示可以清除輸入框裡面的內容,iOS上面直接設定某個屬性就可以實現這一功能,但是Android原生EditText不具備此功能,所以要想實現這一功能我們需要重寫EditText

一套程式碼解決ios的所有介面適配問題

在蘋果推出iPhone6Plus後,蘋果的機型增多,顯示屏的大小也變得多樣,因此之前的絕對佈局的方法難以滿足手機的適配問題,因此蘋果推出了相對佈局的介面適配方法,本文所講的介面適配方法主要基於masonry的適配方法,如果不懂masonry得介面佈局方法,請先移步 http

微信登陸 (微信PC掃碼授權登陸) 簡單的php程式碼

微信PC掃碼授權登陸 php簡單示例程式碼首先須要申請,必須企業,個體工商戶,媒體等申請地址 https://open.weixin.qq.com/我直接上php最簡單程式碼開始登陸 //-------配置 $AppID ='wx033336c794d4'; $AppSecret ='d4624c3633

iOS AutoLayout 簡單運用(純程式碼)

舉例說明:建立一個grayView(寬150 高100 距上200 距左100) 方法一:原生API  UIView *grayView = [UIView new]; grayVie

C#2005 一個簡單的查詢介面程式碼:DataGridView使用、影象顯示、複合查詢樣例

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using S

JAVA使用GUI編寫一個簡單的學生管理系統0.1版本--學生登陸介面

JAVA入門,寫的不好請多包涵,如有不懂,下方可提問,有問會必答! import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Login{ public stati

JSP制作簡單登陸

nal -c 信息 data pwd attribute 一個 bsp 語言 JSP制作簡單登陸界面 運行環境 eclipse+tomcat+MySQL 不知道的可以參考Jsp運行環境——Tomcat 項目列表 這裏我先把jsp文件先放在Web-INF外面訪問 需要建

iOS 簡單的使用drawRect 繪制

ima com () sel elf etc 簡單 text csg 1 。首先新建UIView一個類 2 在UIView一個類.m 裏面追加 - (instancetype)initWithFrame:(CGRect)frame{ self = [supe

Python tkinter 實現簡單登陸註冊 基於B/S三層體系結構,實現用戶身份驗證

cte cursor 實現簡單 結果 pass 分享圖片 not null for 技術 Python tkinter 實現簡單登陸註冊 最終效果 開始界面 ? 註冊 登陸 ? 源碼 login.py # encoding=utf-8 f

cas+shiro+springboot+pac4j 自定義登陸介面以及驗證碼等

首先 我把主要參考的文章貼出來: https://blog.csdn.net/weixin_39819191/article/details/80361301 https://blog.csdn.net/u010588262/article/category/7548325  

GPIO模擬SPI介面程式碼(3線8位)

http://blog.csdn.net/sanchuyayun/article/details/48394381 關於SPI,不同的晶片具體通訊方式可能會不大一樣,所以要具體問題具體分析,下面是最近做LCD時碰到的兩個模擬SPI協議的程式碼,晶片通訊方式不同,程式碼也就不同了

c# Winform登陸介面設計,登陸使用者不同許可權設定

要求:登陸介面,使用者只有管理員和普通使用者           管理員可以進行資料庫的增、刪、改、查;         

Android 上層wifi簡單介紹及程式碼演示

閒來無事,研究一下Android的wifi模組。 涉及到的類: *1.WifiManager:管理wifi連線的service,可由getSystemService(Context.WIFI_SERVICE)獲取* *2.ScanResult:包含wifi的SSID、B