an
saurus
tags:
ios
iphone
uitableview
uitableviewcell
uitextfield
views:
53
answers:
1
Q:
UITextField inside UITableView cell
A:
You need to set the frame of the labels relative to the cell.
Firoze Lafeer
2010-10-27 05:26:01
Like this? txtName = [[UITextField alloc] initWithFrame:CGRectMake(0,0,100,30)]; txtIP = [[UITextField alloc] initWithFrame:CGRectMake(0,0,100,30)]; txtPassword = [[UITextField alloc] initWithFrame:CGRectMake(0,0,100,30)]; txtPort = [[UITextField alloc] initWithFrame:CGRectMake(0,0,100,30)];
bmilleker
2010-10-27 23:10:10
Well, you don't want to create all new labels if you already have them in a nib you loaded. Unless you're moving away from that strategy?
Firoze Lafeer
2010-10-27 23:42:56
I am still using that strategy. Not sure how to set the frames on them though
bmilleker
2010-10-27 23:47:57
Ok, well I'm not sure how much you really buy yourself by putting them in a nib (as opposed to just putting the strings in a .strings file). But, leaving that aside, 'frame' is a property of UIView. So txtName.frame = CGRectMake(...)
Firoze Lafeer
2010-10-28 00:53:15
Thanks for all the help! The frame solved my issue.
bmilleker
2010-10-29 05:20:12
related questions
How do we get arround Apple's decission to skip sms templates for iPhone?
iPhone App Crashing - Error Question
Can I write native iPhone apps using Python
Does the Iphone 1/2 have a compass inside?
How do you beta test an iphone app?
Is it just the iPhone simulator that is restricted to intel only Mac's?
iPhone App Minus App Store?
Deleting messages from Exchange IMAP mailbox on iPhone
Is there a multiplatform framework for developing iPhone / Android applications?
How can I launch the Google Maps iPhone application from within my own native application?
Tips for a successful AppStore submission?
iPhone app that access the Core Location framework over web
Virtual Mac?
What's a good machine for iPhone development?
How can I develop for iPhone using a Windows development machine?
Recommended iPhone Development Resources
Best Wiki for Mobile Users
How to programmatically send SMS on the iPhone?
iPhone - Exchange Calendars in Public Folders
iPhone web applications, templates, frameworks?
Understanding reference counting with Cocoa / Objective C
How-to articles for iPhone development, Objective-C
What are the correct pixel dimensions for an apple-touch-icon?
How do I give my web sites an icon for iPhone?
iPhone app in landscape mode