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 11-05-2011, 09:51 PM   #1 (permalink)
Registered Member
 
Join Date: May 2011
Posts: 173
mistergreen2011 is on a distinguished road
Default Passing parameter into a UITableViewCell class?

This should work but it's giving me a warning.

I'm making a custom table cell with a textfield in it.
Code:
TextInput.h
@interface TextInput : UITableViewCell <UITextFieldDelegate> {
}
I want to pass in a string into the textfield if there is any so I created an extra param 'contentLable'
Code:
TextInput.m
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier contentLable:(NSString *)contentLable
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
        
        UITextField *text = [[UITextField alloc] initWithFrame:CGRectMake(10.0, 10.0, 280.0, 30.0)];
        text.returnKeyType = UIReturnKeyDone;
        text.delegate = self;
        //text.borderStyle = UITextBorderStyleRoundedRect;
        text.autocorrectionType = UITextAutocorrectionTypeNo;
        text.clearButtonMode = UITextFieldViewModeWhileEditing;
        text.text = contentLable;
        
        [self.contentView addSubview:text];
        
        
        
    }
    return self;
}
But when I want to alloc init this it's giving me a warning (Method '-initWithStyle:reuseIdentifier:contentLable' not found (return type default to id)

Code:
 if (indexPath.row == 0) {
        cell = [[[TextInput alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier contentLable:@"Some text"] autorelease];
    
        cell.textLabel.text = @"Name";
    }
Any ideas?

thanks.
mistergreen2011 is offline   Reply With Quote
Old 11-05-2011, 09:56 PM   #2 (permalink)
Just helping out.
 
Domele's Avatar
 
Join Date: Feb 2011
Posts: 2,565
Domele is on a distinguished road
Default

You need to add your new initializer method into the header file. Also, you should reuse your cells. Look up BrianSlick's tutorial for how to properly setup your tableview.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.

New app - See screenshots and details at www.globaclock.com.

If you want to thank me, click the link. Every click counts. If you want to do more, buy my app. A link is available on my website. Thanks.
Domele is offline   Reply With Quote
Old 11-05-2011, 10:47 PM   #3 (permalink)
Registered Member
 
Join Date: May 2011
Posts: 173
mistergreen2011 is on a distinguished road
Default

Quote:
Originally Posted by Domele View Post
You need to add your new initializer method into the header file. Also, you should reuse your cells. Look up BrianSlick's tutorial for how to properly setup your tableview.
doh! rookie mistake.
thanks.
mistergreen2011 is offline   Reply With Quote
Reply

Bookmarks

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: 401
17 members and 384 guests
7twenty7, Alex-alex, Apptronics RBC, baja_yu, dre, FrankWeller, gwelmarten, ipodphone, jeroenkeij, jleannex55, matador1978, n00b, pbart, reficul, Retouchable, Sami Gh, usernametaken
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,676
Threads: 94,125
Posts: 402,910
Top Poster: BrianSlick (7,990)
Welcome to our newest member, jleannex55
Powered by vBadvanced CMPS v3.1.0

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