免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2389 | 回复: 1
打印 上一主题 下一主题

IPhone Development Tips(2)First Simple Sample [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-01 14:52 |只看该作者 |倒序浏览
IPhone Development Tips(2)First Simple Sample









2. Build Action for Pages
Add action for the button
select 'MainStoryboard.storyboard', change to 'Assistant Editor' at the right top.
select the file hello3ViewController.h in Assistant

select the button and push 'ctrl' on our keyboard, we drag our mouse between the
@interface hello3ViewController : UIViewController

@end

We get a window. We will configure some items as following:
Connection ----> Action
Name ----> greeting
Type --> id
Event --> Touch Up Inside
Arguments ---> Sender

click 'connect', the xcode will add interface in .h file, and implementation in .m file.

Create Outlets for the Text Field and the Label
When you create an outlet connection in Xcode, the connection is archived in the storyboard file and restored when the app runs. The restored connection allows the two objects to communicate with each other at runtime.

create the outlet to textField, the related window shows these items:
Connection ---> Outlet
Name ----> textName
Type ----> UITextField
Storage ---> Weak  ------------>> Click 'Connect' after enter all these values.

add method in .m file:
  1. - (void) viewDidUnload
  2. {
  3. [self setTextName:nil];
  4.             [super viewDidUnload];
  5.             self.textname = nil;
  6. }

  7. Add outlet to label. And we can see the connections information after we click the 'connection inspector' button at the right top.

  8. Make the Text Field's Delegate Connection
  9. push ctrl and select text field and drag to the right yellow button with name 'Hello3 View Controller'.
  10. release mouse and select delegate.

  11. Implementing the View Controller
  12. Add a Property for the User's Name
  13. In the file hello3ViewController.h
  14. @interface hello3ViewController:
  15.       UIViewController{
  16. NSString *userName;
  17. }
  18. ...
  19. @property (nonatomic,copy) NSString *userName;
  20. @end

  21. In the file hello3ViewController.m
  22. @implementation hello3ViewController

  23. @synthesize textName = _textName;
  24. @synthesize labelGreeting = _labelGreeting;
  25. @synthesize userName = _userName;

  26. ...
  27. - (IBAction)greeting:(id)sender {
  28. self.userName = self.textName.text;
  29. NSString *nameString = self.userName;
  30. if([nameString lenght] == 0){
  31. nameString = @"World";
  32. }
  33. NSString *greeting = [[NSString alloc]
  34. initWithFormat:@"hello, %@!",nameString];
  35. self.labelGreeting.text = greeting;
  36. }

  37. Configure the View Controller as the Text Field's Delegate
  38. In an iOS app, the keyboard is shown automatically when an element that allows text entry becomes the first responder, it is dismissed automatically when the element loses first responder status.

  39. select file hello3ViewController.m file
  40. ...snip...
  41. -(BOOL)textFieldShouldReturn:(UITextField *)theTextField{
  42. if(theTextField == self.textName){
  43. [theTextField resignFirstResponder];
  44. }
  45. return YES;
  46. }
复制代码
...
@end

select the .h file and add some to the @interface line:
@interface hello3ViewController : UIViewController <UITextFieldDelegate>{
...snip...

error message:
unrecognized selector sent to instance ....

solution:
I link the method input to textfield, but I did not delete that.

references:
http://developer.apple.com/libra ... onfiguringView.html
http://developer.apple.com/libra ... n/Introduction.html
http://developer.apple.com/libra ... n/introduction.html
http://developer.apple.com/libra ... n/Introduction.html
http://developer.apple.com/libra ... _Primer/_index.html

论坛徽章:
0
2 [报告]
发表于 2011-12-23 23:46 |只看该作者
谢谢分享  希望于楼主多多交流
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP