วันศุกร์ที่ 12 ธันวาคม พ.ศ. 2557

iOS/iPhone Dynamic Create Object Dynamically (Objective-C , iPhone)

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

iOS/iPhone Dynamic Create Object Dynamically (Objective-C , iPhone)

 
 


ขับเคลื่อนโดย แปลภาษา
Bookmark.    
    
iOS/iPhone Dynamic Create Object Dynamically (Objective-C , iPhone) ปกติแล้วเวลาเราสร้าง Object ต่าง ๆ บนหน้าจอ Interface Design ของ View เราจะใช้การ Drag and Drop รายการ Object ต่าง ๆ ไว้บนหน้าจอ View ได้ทันที และถ้าต้องการปรับแต่งคุณสมบัติอื่น ๆ ของ Object ก็สามารถคลิกได้ที่ Inspector และกำหนดค่าคุณสมบัติต่าง ๆ ตามหัวข้อนั้น ๆ แต่ในบางครั้งเราอาจจะต้องสร้าง Object แบบ Dynamically Runtime หรือสร้างในขณะที่โปรแกรมกำลังทำงานอยู่ ซึ่งเราอจจะต้องได้ใช้บ่อย ๆ ถึงบ่อยมาก ในการเขียน App บน iPhone และ iPad ด้วยภาษา Objective-C 

iOS/iPhone Dynamic Create Object Dynamically

iOS/iPhone Dynamic Create Object Dynamically


ในการสร้าง Object นั้นใช้หลักการง่าย ๆ ก็คือการเรียกใช้ Class ของ Object นั้น ๆ เช่น Label ก็จะสร้าง Class ของ UILabel และกำหนดคุณสมัติอื่น ๆ เช่น ตำแหน่ง , ข้อความ , สี และหลังจากได้ Object เรียบร้อยแล้วก็จะนำลงบน View ด้วยคำสั่ง addSubview

1.UILabel *txt=[[UILabel alloc] initWithFrame:CGRectMake(135,0,100 ,30)];
2.txt.text = @"My Label";
3.txt.textColor = [UIColor blackColor];
4.[[self view] addSubview:txt];
5. 
6.[txt release];

ตัวอย่างการสร้าง Label แบบ Dynamically Runtime

คำอธิบาย
// ประกาศสร้าง Class แบบ Label ส่วน CGRectMake คือตำแหน่ง UILabel *txt=[[UILabel alloc] initWithFrame:CGRectMake(135,0,100 ,30)]; txt.text = @"My Label"; // แสดงข้อความ MyLabel txt.textColor = [UIColor blackColor]; // กำหนดสีดำ [[self view] addSubview:txt]; // แสดงผลบนหน้าจอ View [txt release]; // ปล่อย Resource ของ Object ที่ได้สร้างขึ้น เพื่อ Clear Memory


Example การสร้าง Dynamic Create Object บน Dynamically Runtime

iOS/iPhone Dynamic Create Object Dynamically

สร้าง Application บน Xcode แบบ Single View Application

iOS/iPhone Dynamic Create Object Dynamically

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

iOS/iPhone Dynamic Create Object Dynamically

ตอนนี้หน้าจอ View จะยังว่างเปล่า เรามาสร้าง Dynamic Create Object Dynamically บน Code ของ Objective-C ดังนี้

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

ViewController.h
01.//
02.//  ViewController.h
03.//  dynamicObject
04.//
05.//  Created by Weerachai on 11/17/55 BE.
06.//  Copyright (c) 2555 Weerachai. All rights reserved.
07.//
08. 
09.#import <UIKit/UIKit.h>
10. 
11.@interface ViewController : UIViewController
12. 
13.@end


ViewController.m
01.//
02.//  ViewController.m
03.//  dynamicObject
04.//
05.//  Created by Weerachai on 11/17/55 BE.
06.//  Copyright (c) 2555 Weerachai. All rights reserved.
07.//
08. 
09.#import "ViewController.h"
10. 
11.@interface ViewController ()
12. 
13.@end
14. 
15.@implementation ViewController
16. 
17.- (void)viewDidLoad
18.{
19.[super viewDidLoad];
20.// Do any additional setup after loading the view, typically from a nib.
21. 
22.UILabel *txt=[[UILabel alloc] initWithFrame:CGRectMake(135,0,100 ,30)];
23.txt.text = @"My Label";
24.txt.textColor = [UIColor blackColor];
25.[[self view] addSubview:txt];
26. 
27.[txt release];
28. 
29.for(int i = 0; i < 10; i++) {
30.UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
31.[button setFrame:CGRectMake(120, 50 + i*35, 100, 30)];
32. 
33.NSMutableString *text= [NSString stringWithFormat:@"Click Me %d",i];
34. 
35.[button setTitle:text forState:UIControlStateNormal];
36.[button addTarget:self action:@selector(btnClck) forControlEvents:UIControlEventTouchUpInside];
37. 
38.[[self view] addSubview:button];
39.[button release];
40.}
41.}
42. 
43.-(void) btnClck {
44.NSLog(@"Button Pressed!");
45.}
46. 
47.- (void)didReceiveMemoryWarning
48.{
49.[super didReceiveMemoryWarning];
50.// Dispose of any resources that can be recreated.
51.}
52. 
53.@end

สำหรับ Code ของ Objective-C เป็นรุปแบบที่ง่าย ๆ อ่านแล้วเข้าใจได้ในทันที

Screenshot

iOS/iPhone Dynamic Create Object Dynamically
  
Hate it
Don't like it
It's ok
Like it
Love it
Total Votes: 84Overall Rating: 3.8 / 5


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

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

    
 By :ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
 Score Rating : 
 Create/Update Date :2012-11-20 09:59:17 / 2012-11-20 11:26:35
 Download :Download  iOS/iPhone Dynamic Create Object Dynamically (Objective-C , iPhone)
Sponsored Links
 
 
081-987-6107!
 
081-987-6107!
 Sponsored Links / Related
 
การเขียน Coding ด้วยภาษา Objective-C กับการแสดงผลง่าย ๆ บน iOS (iPhone,iPad) 
Rating :   
 
Objective-C and Cocoa กับการเขียนโปรแกรมบน iOS สำหรับ iPhone และ iPad 
Rating :   
 
Objective-C and Variable รู้จักกับตัวแปรในภาษา Objective-C (iOS,iPhone,iPad) 
Rating :    
 
Objective-C and DataType ชนิดของตัวแปรในภาษา Objective-C (iOS,iPhone,iPad) 
Rating :   
 
Objective-C and Loop การสร้างลูปและแสดง Loop แบบง่าย ๆ (iOS,iPhone,iPad) 
Rating :    
 
Objective-C and if , else if , switch Flow Condition Statement (iOS,iPhone,iPad) 
Rating :   
 
Objective-C and Operator การใช้ Operator บนภาษา Objective-C (iOS,iPhone,iPad) 
Rating :   
 
Objective-C Property(strong,nonatomic) , Weak , Strong type (iOS, iPhone, iPad) 
Rating :   
 
Objective-C and Class Object (OOP) การเรียกใช้งาน Class (iOS,iPhone,iPad) 
Rating :   
 
iOS/iPhone Substring / Split / Replace String (Objective-C) 
Rating :   
 
iOS/iPhone and Timer (NSTimer, Objective-C) 
Rating :   
 
iOS/iPhone and Thread (NSThread, Objective-C) 
Rating :   


ThaiCreate.Com Forum
 
Comunity ForumFree Web Script
Jobs FreelanceFree Uploads
Free Web HostingFree Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน Struts การเขียนโปรแกรม Java Struts Framework
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน Yii  Framework การเขียนโปรแกรม ภาษา PHP กับ Yii
สอน .Net การเขียนโปรแกรม ภาษา .Net

Free Tutorial
สอน 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
Microsoft Access
MySQL Tutorials
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
Oracle Tutorial
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว
สุดยอด Source Code V2.0
 
 
แจ้งชำระเงิน/โอนเงิน
 

Hit Link
   




Acc : thaicreate@hotmail.com

 Load balance : Server TC-00
ThaiCreate.Com Logo
Thailand Web Stat © www.ThaiCreate.Com. 2003-2013 All Rights Reserved.
for Contact Us :  [Conditions Privacy Statementติดต่อโฆษณา 081-987-6107 , 084-715-5121 อัตราราคา คลิกที่นี่

ไม่มีความคิดเห็น:

แสดงความคิดเห็น