Go Back  Mac-Forums.com  > Software > OS X - Darwin and Development > Basic Problem reading input from NSTextCell in Xcode

Reply
 
LinkBack Thread Tools
Old 10-22-2009, 07:16 PM   #1 (permalink)
Alex_Rutherford

 
Member Since: Oct 22, 2009
Posts: 1
Alex_Rutherford is on a distinguished road
Basic Problem reading input from NSTextCell in Xcode

Hi, I'm new to Objective C and just doing some basics.

All I want to do is;

- read a value from one text field
- double it
- output it to another text field

But I'm stuck on the first, each time I try to read the value in it returns a value of 0 even though the entry is clearly 1 or 3 or 100.

This is the snippet

input=[inputfield floatValue];

Where inputfield is the NSTextCell box and input is a float.

The rest of the code is below in case it is useful.

Please help, going insane!

readwrite.m
************************************************** *****

#import "readandwrite.h"

@implementation readandwrite

@synthesize input, output;

-(IBAction)calculate: (id) sender
{

// float input;

input=[inputfield floatValue];
self.output=input*2.0;
printf("Input is %f\n",input);
printf("Output is %f\n",output);
[outputfield setFloatValueutput];
}

@end

readandwrite.h
************************************************** *****

#import <Cocoa/Cocoa.h>


@interface readandwrite : NSObject {
char input;
float output;
IBOutlet NSTextField *outputfield;
IBOutlet NSTextField *inputfield;


}

@property(readwrite) float output;
@property(readwrite) char input;


-(IBAction)calculateid)sender;

@end
Alex_Rutherford is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Stumble this post
Reply With Quote
Old 10-22-2009, 10:22 PM   #2 (permalink)
wmprice1240
Banned
 
Member Since: May 03, 2009
Posts: 481
wmprice1240 has a spectacular aura about
Mac Specs: MBP 2.33 4GB: MacPro 8 Core 2.8, 16GB: MacMini 2.26 4GB: MacMin 2.53 4GB: iPhone3GS 32GB
Hi, welcome to the forums.

I was able to compile and run your code (with a few stylistic modifications) with no issues. I assume you have your outlets and actions correctly setup via InterfaceBuilder and that the calculate message is actually being invoked. Is this correct? I assume your using a simple button control to send the readandwrite target the action and that the connection is made via InterfaceBuilder as well.
wmprice1240 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Stumble this post
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Anyone know the basic code difference between VS and XCode? SapAuthor OS X - Darwin and Development 2 09-28-2009 03:18 PM
Need help working with basic C in xcode DB_KG OS X - Darwin and Development 3 08-07-2009 11:23 PM
Help!! Incredibly basic Xcode Tools Question pdcom OS X - Darwin and Development 1 08-26-2008 04:40 PM
Programming basic C in Xcode DrQuincy OS X - Darwin and Development 4 01-16-2008 04:22 PM
Basic composite video input box? Itbepopples Other Hardware and Peripherals 3 12-27-2006 12:01 AM

 
 
 
     
Home Calendar Get New
     

Copyright ©2001-2009 Mac-Forums.com. All Rights Reserved. A division of iNET Interactive.

Other iNET Interactive Sites: Web Hosting Talk | Swish Talk | Hosting Catalog.com| Dev Papers| Deleted Domains| Hot Scripts

Powered by vBulletin
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.