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 Stepper (UIStepper) Example (iPhone,iPad)

iOS/iPhone Stepper (UIStepper) Example (iPhone,iPad) สำหรับ Stepper เป็น Object บน iOS ที่ทำงานในรูปแบบของ Step เช่น การบวกหรือลบค่าที่เป็น Step เท่า ๆ กันทุกครั้ง เราสามารถกำหนดค่าของ Step ได้ในส่วนของ Inspector ว่าในแต่ล่ะ Step จะให้บวกค่าหรือลบค่าทีล่ะเท่าไหร่ เช่น ครั้งล่ะ 1 หรือ 2 หรืออื่น ๆ โดย Stepper จำทำงานร่วมกับ Class ของ UIStepper ของ Objective-C ในการที่จะเขียนเงื่อนไขการทำงานต่าง ๆ

iOS/iPhone Stepper (UIStepper) Example

iOS/iPhone Stepper (UIStepper) Example


การ Get ค่าของ Stepper (UIStepper)
IBOutlet UIStepper *stepper;

double value = [stepper value];


การ Set ค่าของ Stepper (UIStepper)
IBOutlet UIStepper *stepper;

stepper.value = 5;


การ กำหนดค่า Min และ Max ของ Stepper (UIStepper)
IBOutlet UIStepper *stepper;

[stepper setMinimumValue:0];
[stepper setMaximumValue:99];


Stepper (UIStepper) เราอาจจะไม่ค่อยได้เห็นในโปรแกรมทั่ว ๆ ไปเท่าไหร่นัก แต่เท่าที่จำได้ จะเคยเห็นในส่วนของ iPhone ใช้สำหรับ เพิ่ม หรือ ลบค่าตัวเลข และ App ของ Thairath LITE ใช้สำหรับ เพิ่ม ลด ขนาดของ Font

Stepper (UIStepper)

Stepper (UIStepper) ประยุกต์ใช้กับการเพิ่ม-ลด ขนาด Font









Example ตัวอย่างการใช้ Stepper (UIStepper) แบบง่าย ๆ

iOS/iPhone Stepper (UIStepper) Example

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

iOS/iPhone Stepper (UIStepper) Example

เลือกและไม่เลือกรายการดังรูป จากนั้นคลิกที่ Create เพื่อสร้าง Project

iOS/iPhone Stepper (UIStepper) Example

ได้ไฟล์ xib ที่เป็น View ค่า Default ตอนนี้ยังเป็นหน้าจอว่าง ๆ

iOS/iPhone Stepper (UIStepper) Example

ทำการลาก Stepper มายังหน้าจอของ Interface และสร้าง Label ขึ้นมาด้วย 1 ตัว สำหรับแสดงค่า Result

iOS/iPhone Stepper (UIStepper) Example

กำหนดค่า Min / Max และ Current รวมทั้ง Step การเช่น บวกลบทีล่ะหนึ่งก็ใส่เป็น 1

iOS/iPhone Stepper (UIStepper) Example

จากนั้นใน Class ของ .h ทำการเชื่อม IBOutlet และ IBAction ดังรูป

iOS/iPhone Stepper (UIStepper) Example

ตอนนี้ใน Class ของ .m เราจะได้ Event ของ Stepper ดังรูป ตอนนี้ยังไม่มีคำสั่งใด ๆ








iOS/iPhone Stepper (UIStepper) Example

ให้ใส่คำสั่งง่าย ๆ ดังนี้

- (IBAction)stepperChanged:(id)sender {

    UIStepper *stepper = (UIStepper *)sender;
    
    double value = [stepper value];
    
    [lblResult setText:[NSString stringWithFormat:@"%d", (int)value]];
    
}


Screenshot

iOS/iPhone Stepper (UIStepper) Example

อ่านค่าของ Stepper ที่ได้

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

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

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
{
    IBOutlet UILabel *lblResult;
}

- (IBAction)stepperChanged:(id)sender;


@end


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

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
}

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

- (IBAction)stepperChanged:(id)sender {

    UIStepper *stepper = (UIStepper *)sender;
    
    double value = [stepper value];
    
    [lblResult setText:[NSString stringWithFormat:@"%d", (int)value]];
    
}

- (void)dealloc {
    [lblResult release];
    [super dealloc];
}

@end



.

   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-11-13 16:44:37 / 2017-03-26 00:02:32
  Download : Download  iOS/iPhone Stepper (UIStepper) Example (iPhone,iPad)
 Sponsored Links / Related

 
iOS/iPhone Slider (UISlider) Example (iPhone,iPad)
Rating :

 
iOS/iPhone Segmented Control (UISegmentedControl) Example (iPhone,iPad)
Rating :

 
iOS/iPhone Switch (UISwitch) Example (iPhone,iPad)
Rating :

 
iOS/iPhone Map View (MKMapView) Longitude , Latitude Example (iPhone,iPad)
Rating :

 
iOS/iPhone Picker View (UIPickerView) Example (iPhone,iPad)
Rating :

 
iOS/iPhone Collection View (UICollectionViewController) Multiple Column Item (iPhone, iPad)
Rating :

 
iOS/iPhone Scroll View (UIScrollView) Example (iPhone,iPad)
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 อัตราราคา คลิกที่นี่