Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > Mobile > Mobile Forum > iOS - ล็อกอินแล้วโชว์ข้อมูล ใน TableView แต่ว่าไม่ขึ้นอะไรเลย ช่วยดูโค้ดให้หน่อยค่ะว่าผิดตรงไหน



 

iOS - ล็อกอินแล้วโชว์ข้อมูล ใน TableView แต่ว่าไม่ขึ้นอะไรเลย ช่วยดูโค้ดให้หน่อยค่ะว่าผิดตรงไหน

 



Topic : 107095

Guest




ล็อกอินแล้วโชว์ข้อมูล ใน TableView แต่ว่าไม่ขึ้นอะไรเลย ช่วยดูโค้ดให้หน่อยค่ะว่าผิดตรงไหน
โชว์ login

Code (Objective-C)
//
//  logindetailViewController.m
//  Loginapp
//
//  Created by Nakornjinda on 3/19/2557 BE.
//  Copyright (c) 2557 Nakornjinda. All rights reserved.
//

#import "logindetailViewController.h"
#import "loginViewController.h"

@interface logindetailViewController ()
{
    NSMutableArray*myObject;
    NSMutableArray *displayObject;
    

    // A Dictionary object
    NSDictionary*dict;
    //Define keys
    NSString*lblStudentID;
    NSString*lblIdname;
    NSString*lblNamebook;
    NSString*lblLNameT;
    NSString*lblFNameT;
    
    
    UIAlertView *loading;
    
}



@end

@implementation logindetailViewController
@synthesize receivedData;




- (void)viewDidLoad
{
    [super viewDidLoad];
    //Define Keys
    lblStudentID=@"StudentID";
    lblIdname=@"Idname";
    lblNamebook=@"Namebook";
    lblLNameT=@"LNameT";
    lblFNameT=@"FNameT";
    
   // Create array to hold dictionaries
    myObject = [[NSMutableArray alloc] init];
    
    //Keyword=abc
    NSMutableString *post = [NSString stringWithFormat:@"sStudentID =%@",[ self.sStudentID description]];
   
    NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
    NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
    
    NSURL *url = [NSURL URLWithString:@"http://localhost:8888/app/getUserByMemberID.php"];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
                                                           cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                                                       timeoutInterval:10.0];
    [request setHTTPMethod:@"POST"];
    [request setValue:postLength forHTTPHeaderField:@"Content-Length"];
    [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
	[request setHTTPBody:postData];
    NSLog(@"lg info post is = %@",post);
    NSLog(@"lg info postData is = %@",postData);
    NSLog(@"lg info postLength is = %@",postLength);
    NSLog(@"lg info url is = %@",url);
    NSLog(@"lg info request is = %@",request);
    
    NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:request delegate:self];
  
    NSLog(@"Connection = %@",theConnection);

    // Show Progress Loading...
    [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
    
    loading = [[UIAlertView alloc] initWithTitle:@"" message:@"Please Wait..." delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
    UIActivityIndicatorView *progress= [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(125, 50, 30, 30)];
    progress.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
    [loading addSubview:progress];
    [progress startAnimating];
    [progress release];
    [loading show];
    NSLog(@"progress = %@",progress);

    if (theConnection) {
        self.receivedData = [[NSMutableData data] retain];
    } else {
		UIAlertView *connectFailMessage = [[UIAlertView alloc] initWithTitle:@"NSURLConnection " message:@"Failed in viewDidLoad"  delegate: self cancelButtonTitle:@"Ok" otherButtonTitles: nil];
		[connectFailMessage show];
		[connectFailMessage release];
    }
    
    [myTable reloadData];

}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    [receivedData setLength:0];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    [receivedData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    
    [connection release];
    [receivedData release];
    
    // inform the user
    UIAlertView *didFailWithErrorMessage = [[UIAlertView alloc] initWithTitle: @"NSURLConnection " message: @"didFailWithError"  delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];
    [didFailWithErrorMessage show];
    [didFailWithErrorMessage release];
	
    //inform the user
    NSLog(@"Connection failed! Error - %@", [error localizedDescription]);
    
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    if(receivedData)
    {
        //NSLog(@"%@",receivedData);
        //NSString *dataString = [[NSString alloc] initWithData:receivedData encoding:NSASCIIStringEncoding];
        //NSLog(@"%@",dataString);
        
        id jsonObjects = [NSJSONSerialization JSONObjectWithData:receivedData options:NSJSONReadingMutableContainers error:nil];
        
        // values in foreach loop
        for (NSDictionary *dataDict in jsonObjects) {
            NSString *strStudentID = [dataDict objectForKey:@"StudentID"];
            NSString *strIdName = [dataDict objectForKey:@"IdName"];
            NSString *strNamebook = [dataDict objectForKey:@"Namebook"];
            NSString *strLNameT = [dataDict objectForKey:@"LNameT"];
            NSString *strFNameT = [dataDict objectForKey:@"FNameT"];
            NSLog(@"StudentID = %@",strStudentID);
            NSLog(@"Idname = %@",strIdName);
            NSLog(@"Namebook = %@",strNamebook);
            NSLog(@"FNameT = %@",strFNameT);
            NSLog(@"LNameT = %@",strLNameT);
            
            dict = [NSDictionary dictionaryWithObjectsAndKeys:
                    strStudentID, lblStudentID,
                    strIdName, lblIdname,
                    strNamebook, lblNamebook,
                    strLNameT, lblLNameT,
                    strFNameT, lblFNameT,

                    nil];
            [myObject addObject:dict];
        }
        
        [myTable reloadData];
    }
     displayObject =[[NSMutableArray alloc] initWithArray:myObject];
    
    // release the connection, and the data object
    [connection release];
    [receivedData release];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return displayObject.count;
}



- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    static NSString *CellIdentifier = @"Cell";
    
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        // Use the default cell style.
        cell = [[UITableViewCell alloc] initWithStyle : UITableViewCellStyleSubtitle
                                      reuseIdentifier : CellIdentifier];
    }
    
    
    NSDictionary *tmpDict = [displayObject objectAtIndex:indexPath.row];
    
    NSString *cellValue;
    cellValue = [tmpDict objectForKey:lblStudentID];
    NSString* detailbook;
    detailbook = [NSString stringWithFormat:@"รหัส%@ , ผู้แต่ง %@,  สถานะ  %@ "
                  ,[tmpDict objectForKey:lblFNameT]
                  ,[tmpDict objectForKey:lblLNameT]
                  ,[tmpDict objectForKey:lblNamebook]];
    
    cell.textLabel.text = cellValue;
    cell.detailTextLabel.text= detailbook;
    cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
    
    return cell;
    

}



- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)dealloc {
    [myTable release];
    [super dealloc];
}
@end





Tag : Mobile, MySQL, iOS, iPhone, Objective-C, Mac







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2014-03-20 14:47:58 By : fern_105 View : 840 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook



iOS/iPhone Login Username and Password from Web Server (PHP & MySQL)







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-03-21 09:30:33 By : mr.win
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : iOS - ล็อกอินแล้วโชว์ข้อมูล ใน TableView แต่ว่าไม่ขึ้นอะไรเลย ช่วยดูโค้ดให้หน่อยค่ะว่าผิดตรงไหน
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่