Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 06-11-2011, 07:16 PM   #1 (permalink)
Registered Member
 
Join Date: May 2011
Posts: 35
scrumsolutions is on a distinguished road
Question Passing value to another ViewController

Hi All,

When a user clicks on a disclosure button in a cell in my UITableView, I want to be able to pass over a record ID so that I can use that as a reference to the item being viewed;

Code:
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
    NSString *record = [contentsList objectAtIndex:[indexPath row]];
    addUS *editRecord = [[addUS alloc] init];
    editRecord.editID = record;
       
    [self presentModalViewController:[clsNavigation viewAddUS] animated:YES];  
}
editID is in the addUS class, but when I debug and point a breakpoint on that property, the property has no value. When I check the *record though there is value.

Can you help?
scrumsolutions is offline   Reply With Quote
Old 06-11-2011, 07:26 PM   #2 (permalink)
Cocoa Junkie
 
Duncan C's Avatar
 
Join Date: Dec 2008
Location: Northern Virginia
Posts: 6,003
Duncan C has a spectacular aura about
Default

Quote:
Originally Posted by scrumsolutions View Post
Hi All,

When a user clicks on a disclosure button in a cell in my UITableView, I want to be able to pass over a record ID so that I can use that as a reference to the item being viewed;

Code:
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
    NSString *record = [contentsList objectAtIndex:[indexPath row]];
    addUS *editRecord = [[addUS alloc] init];
    editRecord.editID = record;
       
    [self presentModalViewController:[clsNavigation viewAddUS] animated:YES];  
}
editID is in the addUS class, but when I debug and point a breakpoint on that property, the property has no value. When I check the *record though there is value.

Can you help?

You are creating an addUS object as a local variable, and then not doing anything to pass it to the other view controller (or anywhere outside of this method.) When you create a local variable, it's "scope" (the range of code that can use that variable) is limited to only the method.

If you want to pass your addUS object to the view controller you are invoking, add an addUS property to the other view controller, and set it before invoking the view controller.

I gather that [clsNavigation viewAddUS] is a method call that returns a view controller?

If so, add a new property to that view controller. Let's call it theEditRecord. You would add code like this to the header of your view controller

Code:
@interface secondViewController; //replace with the class of view controller you're using
{
//Other ivars that are already in the class go here...
addUS *theEditRecord;
}
//Other property declarations would go here..
@property (nonatomic, retain) addUS *theEditRecord;
//Other method declarations would go here...
@end
and add "@synthesize theEditRecord" to the implementation of your view controller.

Then you could say:

Code:
[clsNavigation viewAddUS].theEditRecord = addUS;
[self presentModalViewController:[clsNavigation viewAddUS] animated:YES];
__________________
Regards,

Duncan C
WareTo

Check out our apps in the Apple App store


Check out this password generator app that shows various techniques including using a data container singleton object to share data between objects in your project.

See this tutorial on using UIView animations and layer animations:

See this thread on generating random, non-repeating text

Check out a very cool Macintosh Kaleidoscopes app called ScopeWorks that we released to the Mac App store.
Duncan C is offline   Reply With Quote
Reply

Bookmarks

Tags
passing values, uitableview, view controller

Thread Tools
Display Modes

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



» Advertisements
» Online Users: 315
6 members and 309 guests
chemistry, Dnnake, iOS.Lover, lendo, Leslie80, pbart
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,664
Threads: 94,120
Posts: 402,898
Top Poster: BrianSlick (7,990)
Welcome to our newest member, Leslie80
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 02:22 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0