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 - อยากสอบถามเก่ียวกับการทำให้รูปเปลี่ยนไปตามค่าในฐานข้อมูลค่ะ จะต้องทำยังงัย ตอนนี้กำลังทำหน้า ค้นหาหนังสืออย่ค่ะแต่ต้องโชว์สถานะการยืม



 

iOS - อยากสอบถามเก่ียวกับการทำให้รูปเปลี่ยนไปตามค่าในฐานข้อมูลค่ะ จะต้องทำยังงัย ตอนนี้กำลังทำหน้า ค้นหาหนังสืออย่ค่ะแต่ต้องโชว์สถานะการยืม

 



Topic : 105642

Guest




อยากสอบถามเก่ียวกับการทำให้รูปเปลี่ยนไปตามค่าในฐานข้อมูลค่ะ จะต้องทำยังงัย ตอนนี้กำลังทำหน้า ค้นหาหนังสืออยู่ค่ะแต่ต้องโชว์สถานะการยืมหนังสือด้วยค่ะ ซึ่งในฐานข้อมูลมันเป็น สถานะ 1 กับ 0 ค่ะ
ค้นหาและโชว์สถานะหนังสือ

อยากให้ดาวเปลี่ยนสีตามสถานะในฐานข้อมูลค่ะ ขอบคุณค่ะ



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







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2014-02-09 18:27:09 By : fern_105 View : 917 Reply : 3
 

 

No. 1



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

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

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

ตอนนี้พวก ดาว ใช้การ Query หรือแสดง แบบไหนครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-02-10 06:29:44 By : mr.win
 


 

No. 2

Guest


ยังไม่ได้ query สถานะเลยค่ะถ้าต้องการquery ต้อง ทำงัยค่ะ อันนี้แค่โชว์รูปเฉยๆค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-02-10 10:41:49 By : fern_105
 

 

No. 3

Guest


Code (Objective-C)
//
//  searchView.m
//  searchapp
//
//  Created by Nakornjinda on 2/8/2557 BE.
//  Copyright (c) 2557 Nakornjinda. All rights reserved.
//

#import "searchView.h"

@interface searchView ()
{
    NSMutableArray *myObject;
    NSMutableArray *allObject;
    NSMutableArray *displayObject;
    
    // A dictionary object
    NSDictionary *dict;
    
    // Define keys
    NSString *idbook;
    NSString *title1;
    NSString *access;
    NSString *w_name;
    NSString *status;
    
    
    UIAlertView *loading;
}


@end

@implementation searchView
@synthesize receivedData;



- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
  
        [super viewDidLoad];
        // Do any additional setup after loading the view.
        // Define keys
        idbook = @"Idbook";
        title1 = @"title1";
        access = @"access";
        w_name = @"w_name";
      status =  @"status1";
   
     
    

        
        // Create array to hold dictionaries
        myObject = [[NSMutableArray alloc] init];
        
    }
    
    - (IBAction)btnSearch:(id)sender {
        
        //Keyword=abc
        NSMutableString *post = [NSString stringWithFormat:@"keyword=%@",[txtKeyword text]];
        NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
        NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
        
        NSURL *url = [NSURL URLWithString:@"http://localhost:8888/search.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];
        
        NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:request delegate:self];
        
        // 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];
        
        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
    {
        sleep(2);
        [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
    {
        // Hide Progress
        [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
        [loading dismissWithClickedButtonIndex:0 animated:YES];
        
        // Clear Object
        [myObject removeAllObjects];
               
        if(receivedData)
        {
        
            
            id jsonObjects = [NSJSONSerialization JSONObjectWithData:receivedData options:NSJSONReadingMutableContainers error:nil];
            
            // values in foreach loop
            for (NSDictionary *dataDict in jsonObjects) {
                NSString *strIdbook = [dataDict objectForKey:@"Idbook"];
                NSString *strtitle1 = [dataDict objectForKey:@"title1"];
                NSString *straccess = [dataDict objectForKey:@"access"];
                NSString *strw_name= [dataDict objectForKey:@"w_name"];
              NSString *strstatus1=[dataDict objectForKey:@"status1"];
             
                
                dict = [NSDictionary dictionaryWithObjectsAndKeys:
                        strIdbook, idbook,
                        strtitle1, title1,
                        straccess, access,
                        strw_name, w_name,
                        strstatus1,status,
                        
                        nil];
                [myObject addObject:dict];
            }
            
            [myTable reloadData];
        }
        
        // release the connection, and the data object
        [connection release];
        [receivedData release];
    }
    
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
        
        int nbCount = [myObject count];
        if (nbCount == 0)
            return 1;
        else
            return [myObject 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] autorelease];
        }

        
        int nbCount = [myObject count];
        if (nbCount ==0)
            cell.textLabel.text = @"";
        else
        {
            NSDictionary *tmpDict = [myObject objectAtIndex:indexPath.row];
            
            
            //
            NSMutableString *text;
            text = [NSString stringWithFormat:@"ชื่อหนังสือ %@",[tmpDict objectForKey:title1]];
            
            //
            NSMutableString *detail;
            detail = [NSString stringWithFormat:@"รหัส%@ , ผู้แต่ง %@,  %@"
                      ,[tmpDict objectForKey:access]
                      ,[tmpDict objectForKey:w_name]
                      ,[tmpDict objectForKey:status]];
    
            
            cell.imageView.image=[UIImage imageNamed : @"1StarSmall.png"];
          
            cell.textLabel.text = text;
            cell.detailTextLabel.text= detail;
            

            
        }
        return cell;
    }
    
    
    - (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
    {
        
        if([searchString length] == 0)
        {
            [displayObject removeAllObjects];
            [displayObject addObjectsFromArray:allObject];
        }
        else
        {
            [displayObject removeAllObjects];
            for(NSDictionary *tmpDict in allObject)
            {
                NSString *val = [tmpDict objectForKey:title1];
                
                NSRange r = [val rangeOfString:searchString options:NSCaseInsensitiveSearch];
                if(r.location != NSNotFound)
                {
                    [displayObject addObject:tmpDict];
                }
            }
        }
        
        return YES;
    }
    -(void)tableView:(UITableView*)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
        [txtKeyword resignFirstResponder];
    }
    
    
    
    
    - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
        searchBar.text=@"";
        
        [searchBar setShowsCancelButton:NO animated:YES];
        [searchBar resignFirstResponder];
    }
    
    
    - (void)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }
    
    - (void)dealloc {
        [txtKeyword release];
        [myTable release];
        [super dealloc];
    }
    - (IBAction)BackToViewController:(id)sender {
        [self dismissViewControllerAnimated:YES completion:NULL];
        
    }  //โค้ดติดต่ดปุ่มกลับหน้า
    //- (IBAction)gotoOneViewController:(id)sender {
    // OneViewController *view1 = [[OneViewController alloc] initWithNibName:nil bundle:nil];
    //[self presentViewController:view1 animated:NO completion:NULL];
    //} //โค้ดไปหน้า OneViewController *view1
    
    
@end


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-02-11 23:09:46 By : fern_105
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : iOS - อยากสอบถามเก่ียวกับการทำให้รูปเปลี่ยนไปตามค่าในฐานข้อมูลค่ะ จะต้องทำยังงัย ตอนนี้กำลังทำหน้า ค้นหาหนังสืออย่ค่ะแต่ต้องโชว์สถานะการยืม
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 03
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 อัตราราคา คลิกที่นี่