真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

開源中國iOS客戶端學習——(十二)用戶登陸-創(chuàng)新互聯(lián)

上一篇博客 開源中國iOS客戶端學習——(十一)AES加密中提到將用戶名和密碼保存到了本地沙盒之中,在從本地讀取用戶名和密碼,這是一個怎樣的過程?

創(chuàng)新互聯(lián)建站是一家專注于成都網站制作、網站建設與策劃設計,昌圖網站建設哪家好?創(chuàng)新互聯(lián)建站做網站,專注于網站建設十多年,網設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:昌圖等地區(qū)。昌圖做網站價格咨詢:18982081108
-(void)saveUserNameAndPwd:(NSString *)userName andPwd:(NSString *)pwd
{
    NSUserDefaults * settings = [NSUserDefaults standardUserDefaults];
    [settings removeObjectForKey:@"UserName"];
    [settings removeObjectForKey:@"Password"];
    [settings setObject:userName forKey:@"UserName"];
    pwd = [AESCrypt encrypt:pwd password:@"pwd"];
    [settings setObject:pwd forKey:@"Password"];
    [settings synchronize];
}

上面的方法使用了NSUserDefaults類,它也是以字典形式實現(xiàn)對數(shù)據(jù)功能,并將這些數(shù)據(jù)保存到本地應用程序沙盒之中,這種方法適合保存較小的數(shù)據(jù),例如用戶登陸配置信息;這段代碼首先是定義了一個對象,進行初始化,移除鍵值為UseName和Password的對象,防止數(shù)據(jù)混亂造成干擾;然后就是重新設置鍵值信息; [settings synchronize];將鍵值信息同步道本地;

現(xiàn)在我們道沙盒中來看看這個用戶配置信息

首先查看應用程序沙盒的路徑 ,使用

   NSString *homeDirectory = NSHomeDirectory();   NSLog(@"path:%@", homeDirectory);

打印結果:  path:/Users/DolBy/Library/Application Support/iPhone Simulator/5.1/Applications/55C49712-AD95-49E0-B3B9-694DC7D26E94

但是在我的DolBy用戶下并沒有Library這個目錄,這是因為系統(tǒng)隱藏了這些文件目錄,現(xiàn)在需要顯示這些隱藏的文件,打開終端輸入 defaults write com.apple.finder AppleShowAllFiles -bool true  回車,然后重啟Finder(不會?請看 查看iOS沙盒(SanBox)文件),找到55C49712-AD95-49E0-B3B9-694DC7D26E94目錄下的Library/Preferences下的 net.oschina.iosapp.plist文件,將其打開

開源中國iOS客戶端學習——(十二)用戶登陸

開源中國iOS客戶端學習——(十二)用戶登陸

從中不難看出保存在本地沙盒中用戶的一些基本信息,以及一些配置信息,還記錄一些上次獲取數(shù)據(jù)時間等等;

登陸類在Setting目錄下的loginView類,先看看loginView.xib吧,界面比較簡陋,可能是缺美工吧;

開源中國iOS客戶端學習——(十二)用戶登陸

開源中國iOS客戶端學習——(十二)用戶登陸

從頭文件中聲明部分

#import 
#import "Tool.h"
#import "ProfileBase.h"
#import "MessageView.h"
#import "Config.h"
#import "MBProgressHUD.h"
#import "MyThread.h"
@interface LoginView : UIViewController
{
//    ASI類庫,獲取網絡請求,進行登陸驗證
    ASIFormDataRequest *request;
}
//接受用戶名輸入
@property (strong, nonatomic) IBOutlet UITextField *txt_Name;
//接受用戶屬于密碼
@property (strong, nonatomic) IBOutlet UITextField *txt_Pwd;
//開關按鈕,設置用戶是否要記住用戶名和密碼
@property (strong, nonatomic) IBOutlet UISwitch *switch_Remember;
//標記作用,用于記錄請求數(shù)據(jù)返回異常或錯誤時是否彈出一個警告
@property BOOL isPopupByNotice;
//webView,布局一個手機上的web網頁,顯示說明信息,在這個web頁面有富文本使用,直接可以跳轉到url上
@property (strong, nonatomic) IBOutlet UIWebView *webView;
//登陸處理
- (IBAction)click_Login:(id)sender;
//取消兩個textFile的第一響應對象
- (IBAction)textEnd:(id)sender;
//取消鍵盤第一響應對象,點擊頁面推出鍵盤
- (IBAction)backgrondTouch:(id)sender;
//根據(jù)返回的數(shù)據(jù)保存用戶名和用戶ID到本地
- (void)analyseUserInfo:(NSString *)xml;
@end

在實現(xiàn)文件里,粘貼上主要方法代碼

- (void)viewDidLoad
{
    [super viewDidLoad];
    [Tool clearWebViewBackground:webView];
    [self.webView setDelegate:self];
                                                                                                                                                      
    self.navigationItem.title = @"登錄";
    //決定是否顯示用戶名以及密碼
    NSString *name = [Config Instance].getUserName;
    NSString *pwd = [Config Instance].getPwd;
//    如果用戶名和密碼存在,且不為空,取出付給相應text
    if (name && ![name isEqualToString:@""]) {
        self.txt_Name.text = name;
    }
    if (pwd && ![pwd isEqualToString:@""]) {
        self.txt_Pwd.text = pwd;
    }
                                                                                                                                                      
    UIBarButtonItem *btnLogin = [[UIBarButtonItem alloc] initWithTitle:@"登錄" style:UIBarButtonItemStyleBordered target:self action:@selector(click_Login:)];
    self.navigationItem.rightBarButtonItem = btnLogin;
    self.view.backgroundColor = [Tool getBackgroundColor];
    self.webView.backgroundColor = [Tool getBackgroundColor];
//   web控件上信息
    NSString *html = @"1, 您可以在 http://www.oschina.net 上免費注冊一個賬號用來登陸

2, 如果您的賬號是使用OpenID的方式注冊的,那么建議您在網頁上為賬號設置密碼

3, 您可以點擊 這里 了解更多關于手機客戶端登錄的問題"; [self.webView loadHTMLString:html baseURL:nil]; self.webView.hidden = NO; } 在 [Tool clearWebViewBackground:webView];作用描述不好,直接看方法 + (void)clearWebViewBackground:(UIWebView *)webView { UIWebView *web = webView; for (id v in web.subviews) { if ([v isKindOfClass:[UIScrollView class]]) { [v setBounces:NO]; } } }

[v setBounces:NO];  如果[v setBounces:YES]; 滾動上下滾動是出現(xiàn)空隙,不美觀,為NO  時就不會;

開源中國iOS客戶端學習——(十二)用戶登陸

開源中國iOS客戶端學習——(十二)用戶登陸

- (IBAction)click_Login:(id)sender
{
//    獲取用戶名和密碼
    NSString *name = self.txt_Name.text;
    NSString *pwd = self.txt_Pwd.text;
//    使用ASI類庫請求登陸API,
    request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:api_login_validate]];
    [request setUseCookiePersistence:YES];
    [request setPostValue:name forKey:@"username"];
    [request setPostValue:pwd forKey:@"pwd"];
    [request setPostValue:@"1" forKey:@"keep_login"];
    [request setDelegate:self];
//    失敗調用 requestFailed:
    [request setDidFailSelector:@selector(requestFailed:)];
//    成功調用 equestLogin:
    [request setDidFinishSelector:@selector(requestLogin:)];
//    開始請求
    [request startAsynchronous];
//    動畫提示用戶等待
    request.hud = [[MBProgressHUD alloc] initWithView:self.view];
    [Tool showHUD:@"正在登錄" andView:self.view andHUD:request.hud];
}
//  登陸失敗,隱藏顯示的動畫
- (void)requestFailed:(ASIHTTPRequest *)request
{
    if (request.hud) {
        [request.hud hide:YES];
    }
}

- (void)requestLogin:(ASIHTTPRequest *)request
{
    if (request.hud) {
        [request.hud hide:YES];
    }
//    根據(jù)請求回來的xml進行解析數(shù)據(jù),判斷是否登陸成功
    [Tool getOSCNotice:request];
//    將請求回來的信息保存在客戶端
    [request setUseCookiePersistence:YES];
    ApiError *error = [Tool getApiError:request];
                                                                                                                              
    if (error == nil) {
        [Tool ToastNotification:request.responseString andView:self.view andLoading:NO andIsBottom:NO];
    }
    switch (error.errorCode) {
                                                                                                                                   
        case 1:
        {
            [[Config Instance] saveCookie:YES];
            if (isPopupByNotice == NO)
            {
                NSUserDefaults  *d= [NSUserDefaults standardUserDefaults];
                [self.navigationController popViewControllerAnimated:YES];
            }
                                                                                                                                       
            //處理是否記住用戶名或者密碼
            if (self.switch_Remember.isOn)
            {
                [[Config Instance] saveUserNameAndPwd:self.txt_Name.text andPwd:self.txt_Pwd.text];
            }
            //否則需要清空用戶名于密碼
            else
            {
                [[Config Instance] saveUserNameAndPwd:@"" andPwd:@""];
            }
            //返回的處理
            if ([Config Instance].viewBeforeLogin)
            {
                if([[Config Instance].viewNameBeforeLogin isEqualToString:@"ProfileBase"])
                {
                    ProfileBase *_parent = (ProfileBase *)[Config Instance].viewBeforeLogin;
                    _parent.isLoginJustNow = YES;
                }
            }
                                                                                                                                       
            //開始分析 uid 等等信息
            [self analyseUserInfo:request.responseString];
            //分析是否需要退回
            if (self.isPopupByNotice) {
                [self.navigationController popViewControllerAnimated:YES];
            }
//            查看startNotice方法可知是一個定時器,每隔60s刷新一下用戶信息,是否有新的粉絲或幾條評論
            [[MyThread Instance] startNotice];
        }
            break;
        case 0:
        case -1:
        {
//            返回 當error.errorCode =0 || 1的時候,顯示相關錯誤信息
            [Tool ToastNotification:[NSString stringWithFormat:@"錯誤 %@",error.errorMessage] andView:self.view andLoading:NO andIsBottom:NO];
        }
            break;
    }
}

ApiError 這個類看起來可能很迷惑人,它并不完全像字面意思那樣指的是錯誤的api信息,而是根據(jù)請求返回來的數(shù)字進行判斷。如果error.errorCode = 1表示成功返回了用戶的數(shù)據(jù),0,-1就可能由于服務器網絡等原因不能正確返回數(shù)據(jù);

在ApiError *error = [Tool getApiError:request];中,打印 request.responseString如下,



  
    1
    
  
    
    112617
    
    
    1
    0
    1
    http://static.oschina.net/uploads/user/56/112617_100.jpg?t=1350377690000
  
  
    0
    0
    0
    0


在 [self analyseUserInfo:request.responseString]方法中, 根據(jù)請求成功返回的xml,解析用戶名和UID,保存用戶的UID

- (void)analyseUserInfo:(NSString *)xml
{
    @try {
        TBXML *_xml = [[TBXML alloc] initWithXMLString:xml error:nil];
        TBXMLElement *root = _xml.rootXMLElement;
        TBXMLElement *user = [TBXML childElementNamed:@"user" parentElement:root];
        TBXMLElement *uid = [TBXML childElementNamed:@"uid" parentElement:user];
        //獲取uid
        [[Config Instance] saveUID:[[TBXML textForElement:uid] intValue]];
    }
    @catch (NSException *exception) {
        [NdUncaughtExceptionHandler TakeException:exception];
    }
    @finally {
                                                                                                              
    }
                                                                                                          
}

在后面也看到[[MyThread Instance] startNotice];看看startNotice方法,是一個定時器,每隔60s刷新一下用戶信息,是否有新的粉絲或幾條評論;

-(void)startNotice
{
    if (isRunning) {
        return;
    }
    else {
        timer = [NSTimer scheduledTimerWithTimeInterval:60 target:self selector:@selector(timerUpdate) userInfo:nil repeats:YES];
        isRunning = YES;
    }
}

-(void)timerUpdate
{
    NSString * url = [NSString stringWithFormat:@"%@?uid=%d",api_user_notice,[Config Instance].getUID];
    [[AFOSCClient sharedClient]getPath:url parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {
                                                                                                     
        [Tool getOSCNotice2:operation.responseString];
                                                                                                     
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                                                                                                     
    }];
                                                                                                 
}

  url請求獲取返回的信息(已經登陸情開源中國社區(qū)網站的況下)



0
0
0
0


關于本文提到的幾個動畫過渡顯示效果請看

[Tool showHUD:@"正在登錄" andView:self.view andHUD:request.hud];   MBProgressHUD特效

[Tool ToastNotification:[NSString stringWithFormat:@"錯誤 %@",error.errorMessage] andView:self.view andLoading:NO andIsBottom:NO];    GCDiscreetNotificationView提示視圖

開源中國iOS客戶端×××地址: http://git.oschina.net/oschina/iphone-app

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


本文名稱:開源中國iOS客戶端學習——(十二)用戶登陸-創(chuàng)新互聯(lián)
文章路徑:http://weahome.cn/article/dhpcod.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部