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



Clound SSD Virtual Server

iOS/iPhone Search and Bar Display Controller (UISearchDisplayController)

iOS/iPhone Search Bar and Display Controller (UISearchDisplayController) ก่อนหน้านี้เราได้ใช้ Search Bar (UISearchBar) เพื่อช้องสำหรับค้นหาข้อมูลและแสดงผลบน Table View (UITableView) และบทความนี้เราจะมาลองใช้ Search Bar and Display Controller (UISearchDisplayController) โดยทั้ง 2 ตัวอาจจะมีการทำงานที่คล้าย ๆ กันระหว่าง UISearchBar กับ UISearchDisplayController แต่จะแตกต่างกันตรงที่ UISearchDisplayController จะทำการ deleGate Object กับ Table View และข้อมูลใน Array ได้ในทันที โดยไม่ต้องใช้การสั่งให้ Table View ทำการ reloadData เหมือนกับ UISearchBar

iOS/iPhone Search Bar Display Controller

iOS/iPhone Search Bar Display Controller (UISearchDisplayController)


นอกจากนี้ UISearchDisplayController ยังสามารถควบคุมการแสดงผลของ Table View อื่น ๆ เช่นสามารถสั่งการแสดงผลได้ทันทีหลังจากที่พิมพ์ข้อความที่ต้องการค้นหา หรือใช้การทำให้หน้าจอของ Table View เป็นสีมืด ๆ ก่อนที่จะทำาการค้นหา ดูภาพประกอบเพื่อความเข้าใจ

iOS/iPhone Search Bar and Scope Bar (Objective-C , iPhone)


iOS/iPhone Search Bar Display Controller

เริ่มต้นด้วยการสร้าง Project แบบ Single View Application แบบง่าย ๆ

iOS/iPhone Search Bar Display Controller

เลือกและไม่เลือกราการดังรูป

iOS/iPhone Search Bar Display Controller

ตอนนี้หน้าจอเราจะยังว่าง

iOS/iPhone Search Bar Display Controller

ทำการลาก Search Bar and Display Controller มายังไว้บนหน้าจอของ View








iOS/iPhone Search Bar Display Controller

ทำการลาก Table View มายังไว้หน้าจอของ View

iOS/iPhone Search Bar Display Controller

ใน Class ของ .h ให้ทำการ delegate Class ของ UISearchDisplayDelegate

iOS/iPhone Search Bar Display Controller

สร้างแลเชื่อม IBOutlet

iOS/iPhone Search Bar Display Controller

คลิกขวาที่ Table View ทำการเชื่อม delegate และ dataSource กับ File's Owner

iOS/iPhone Search Bar Display Controller

คลิกขวาที่ Search Bar and Display Controller ทำการเชื่อม delegate กับ File's Owner เช่นเดียวกัน

Code ทั้งหมดของ .h และ .m ในภาษา Objective-C

ViewController.h
//
//  ViewController.h
//  searchBarControllerApp
//
//  Created by Weerachai on 11/18/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UISearchDisplayDelegate>

@property (retain, nonatomic) IBOutlet UITableView *tableViewObj;

@end









ViewController.m
//
//  ViewController.m
//  searchBarControllerApp
//
//  Created by Weerachai on 11/18/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()
{
    NSMutableArray *allObject;
    NSMutableArray *displayObject;
}

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
    
    allObject = [[NSMutableArray alloc] init];
    [allObject addObject:@"1. One"];
    [allObject addObject:@"2. Two"];
    [allObject addObject:@"3. Three"];
    [allObject addObject:@"4. Four"];
    [allObject addObject:@"5. Five"];
    [allObject addObject:@"6. Six"];
    [allObject addObject:@"7. Seven"];
    [allObject addObject:@"8. Eight"];
    [allObject addObject:@"9. Nine"];
    [allObject addObject:@"10. Ten"];
    
    displayObject =[[NSMutableArray alloc] initWithArray:allObject];
}

- (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] autorelease];
    }
    
    
    NSString *cellValue = [displayObject objectAtIndex:indexPath.row];
    cell.textLabel.text = cellValue;
    
    return cell;
}

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
    
    if([searchString length] == 0)
    {
        [displayObject removeAllObjects];
        [displayObject addObjectsFromArray:allObject];
    }
    else
    {
        [displayObject removeAllObjects];
        for(NSString * string in allObject)
        {
            NSRange r = [string rangeOfString:searchString options:NSCaseInsensitiveSearch];
            if(r.location != NSNotFound)
            {
                [displayObject addObject:string];
            }
        }
    }
    
    return YES;
}

- (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 {
    [_tableViewObj release];
    [super dealloc];
}
@end


Screenshot

iOS/iPhone Search Bar Display Controller

แสดงหน้าจอแรกของ App

iOS/iPhone Search Bar Display Controller

เมื่อคลิกที่ช่อง Search Bar

iOS/iPhone Search Bar Display Controller

เมื่อทำการค้นหา


.

   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-11-20 10:03:39 / 2017-03-26 09:45:45
  Download : Download  iOS/iPhone Search and Bar Display Controller (UISearchDisplayController)
 Sponsored Links / Related

 
iOS/iPhone Search Bar (UISearchBar) and Table View (UITableView)
Rating :

 
iOS/iPhone Search Bar and Scope Bar (Objective-C , iPhone)
Rating :

 
iOS/iPhone Search Bar (UISearchBar) Data from Web Server Using JSON
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







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 อัตราราคา คลิกที่นี่