Tagged Questions
0
votes
1answer
125 views
How to vertically center detail text in a table cell of UITableViewCellStyleValue2 style?
When I do
cell.textLabel.numberOfLines = 2;
cell.detailTextLabel.numberOfLines = 1;
on a cell of UITableViewCellStyleValue2 style, the line of detail text is top-aligned, i.e. roughly at the same ...
0
votes
1answer
117 views
Textlabel in a table cell exceeding into detail text
I created a table with Value 1 cell style. Since almost all (main) text labels are rather long, I did
cell.textLabel.numberOfLines = 2;
on all its cells and increased rows' height. Now, when the ...
1
vote
2answers
458 views
UILongPressGestureRecognizer on UITableViewCell does not work in iOS 5 and 4.3
I have a table view, and I use UILongPressGestureRecognizer on table view cell to show a context menu over the cell to allow user perform some extra functionality. Everything is work well in iOS 5.1, ...
2
votes
1answer
310 views
Update UITextFields from UITableViewCells without reloadind data
I have a UITableView with custom UITableViewCells , each of them has a UITextField. I assing to each textField a tag with value : indexPath.row + 100.
Well , i want to update each textField for each ...
0
votes
1answer
272 views
UITableViewCell text color gets changed on selection of row, why?
I have used UITableView with default UITableViewCell.
Here i have given dark gray color in cellForRowAtIndexPath method, also set one imageView to selectedBackgroundView.
So now when i select that ...
0
votes
2answers
1k views
Looping through subview of a custom cell in didSelectRowAtIndexPath to get UITextField text
i know im asking a very common question. but after going through a lots of similar questions and articles im not able understand
How can i access UITextfield inside UITableViewCell inside ...
4
votes
1answer
386 views
Multiple Cell selection in Tableview for iPhone 4.3
I need to select multiple row in tableview for iphone 4.3.should change background color of cell if selected with out accessory type.after navigating to multiple view,if I get back to table view need ...
0
votes
3answers
125 views
Delete/Insert UITableViewCell not in Editing mode
What's best solution to remove cell from tableview doing this not in editing mode. Like example switching to one view to another , update number of cells (after a previous delete or insert of cell) in ...
1
vote
0answers
565 views
Can not set background image for table cell in GROUPED TABLE VIEW iOS 4
If I use following line in iOS 5 + its working perfectly.
cell.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.2];
But this is not working in iOS 4. I also tried following but its not ...
0
votes
1answer
160 views
Distorted border for UITableViewCell in a grouped UITableView (Retina size)
I created two custom UITableViewCells and put them in a grouped UITableView. Testing to see how these cells look on non retina sceen everything look fine, but on retina i get a weird effect for these ...
1
vote
1answer
343 views
UITextField in UITableViewCell
I want to place UItextField in UITableViewCell but I have problem. Text field don't appear. This is my code:
-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString ...
1
vote
2answers
1k views
iOS UITableView unexpectedly adding margins
I have a UITableView, and currently it has a single cell in it. I have written a custom TableViewCell class which inherits from UITableViewCell in order to do some custom drawing. I have set the width ...
0
votes
1answer
122 views
iOS: Programmatically add different tableviewcells
I would like to know what the best approach would be for creating and adding rows to a uitableview based on data from an API. The data returned from the API would look like the below. Some fields will ...
2
votes
1answer
2k views
Add UITableView to UITableViewCell Dynamically
I wanna add a UITableView to UITableViewCell dynamically, when i click on the UITableViewCell, it will change it's height and display a UITableView inside it, and when i click on the UITableViewCell ...
1
vote
1answer
1k views
iOs - hide buttons when entering edit mode
I have an UITableView that contains 2 buttons for each UITableviewCell.
How to hide the buttons when the UITableview is in edit mode?
Thanks
0
votes
1answer
227 views
Can the imageView of UITableViewCell be set separately for selected and highlighted states?
In UIButton the following method explicitly allows setting different images for different states:
// default is nil. should be same size if different for different states
- (void)setImage:(UIImage ...
1
vote
2answers
159 views
Adding a uiview in TableviewCell
I have a UITableView with custom cell. I have created seperate class with xib for the tableviewcell. in tableviewcell i have added a UIView, because i want to add different uiviews in the tableview.
...
0
votes
0answers
85 views
Parses the data into a table using CoreData of downloading
2011-12-07 21:49:30.523 Flow[3185:207] theSearchBar.text : (null)
2011-12-07 21:49:30.524 Flow[3185:207] NSPredicate : publish == 1
2011-12-07 21:49:33.285 Flow[3185:207] Presenting action sheet ...
0
votes
1answer
282 views
How to add UITextView as object in NSMutableArray
i am trying to add uitextview as subview of uitabaleview's cell and for that i am creating uitextview programatically in cellForRowAtIndex and i want it to be display the text dynamically from the ...
2
votes
3answers
386 views
Hide some UITableViewCells when editing?
Background
I'm really struggling to work out how to handle editing mode of a UITableView and hide some rows in when editing commences.
I'm using a grouped table view style with multiple sections and ...
0
votes
1answer
763 views
How to display text label in tableView cell
I have populated a tableview with an array of arrays, but I do not know how to display text as the cell label.
I want to use the string in the "0" position of the array that is inside the array as ...
2
votes
1answer
979 views
Problem loading images into UITableView cell with SDWebImage
I'm using SDWebImage to load images into my table cells - however the images aren't appearing until I've selected the row, when I see the image appear just as the table is being animated off the ...
0
votes
1answer
458 views
Multi Touch problem in Custom UiTableViewCell
static NSString *cellIdentifier = @"Cell";
AssignmentTableCell *cell = (AssignmentTableCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(cell == nil) {
NSArray *nib = ...
6
votes
3answers
9k views
IOS: dynamic height with a custom uitableviewcell
I am new at ios development and this is my problem thus far. I am able to dynamically calculate the height of a custom cell via the delegate "heightForRowAtIndexPath". So on the first load, every ...
1
vote
1answer
91 views
How to proxy editingDidEnd from UITableViewCell to UITableViewController?
I have a custom UITableViewCell:
@interface EditingTableViewCell : UITableViewCell <UITextFieldDelegate> {
UITextField *editableText;
UILabel *textLabel;
}
And I did receive ...
1
vote
2answers
346 views
Updating UITableViewCell not refreshing the UI
I have a UITableView and on the first time cellForRowAtIndexPath is called, I save all the UITableViewCell values I return. I do this so that I can update the contents when ever the underlying data ...
0
votes
2answers
823 views
tableView cells wont change font color
I have done many approach on changing font colors from a tableView cell. apparently both method failed. Unless I am doing it wrongly, then I need some help to correct it. Here is the code I found ...
1
vote
1answer
847 views
Custom UITableView not refreshing cells
I am creating a custom UITableViewCells. I am using a NIB file as the cell. Its displaying some data from REST API's. The problem I am having is when I scroll down & then back up, the cells are ...
0
votes
1answer
253 views
Having trouble overriding uitableviewcell properties
I have a custom TableViewCell that I've created. Each cell has two UIlabels that I want to be different colors. Also, I have one section of my tableView that I want to have a different background ...
0
votes
2answers
614 views
Problem with Custom accessoryView in UITableView
I have two table views with the following declarations.
cAboutUs = [[UITableView alloc] initWithFrame:CGRectMake(85, 272, 227, 30)];
ctableView = [[UITableView alloc] initWithFrame:CGRectMake(85, ...
0
votes
2answers
1k views
How dequeueReusableCellWithIdentifier: treat different indexPath?
Let us look some standard codes of tableview
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
...
0
votes
1answer
317 views
About dequeueReusableCellWithIdentifier:
Case 1: create UITableViewCell with
initWithStyle:reuseIdentifier:
Case 2: create UITableViewCell with
[[NSBundle mainBundle] loadNibNamed:@"MyCell"
owner:self ...
0
votes
1answer
230 views
iPhone table scroll losses cell data
Since updating this morning to IOS 4.3.3 I have a problem with the table data.
The rows have 2 cell items with text on it.
The second cell item us updated after a selection. And are updated in ...
7
votes
2answers
8k views
Add/Delete UITableViewCell with animation?
I know this might sound like a dumb question, but I have looked every where. How can I do this?
I know how to do this with a swype-to-delete method, but how cam I do it outside that function?
Please ...
9
votes
1answer
1k views
How to copy cells between tables as the pulse app
I need to copy cells between 2 table views.
I have a more-or-less working solution. However, it is not smooth, and I would love to do something similar to the pulse app reorder feeds option...
...
1
vote
2answers
407 views
UITableViewCell left side color
I would like to set a color to the most left of my UITableViewCell, BUT I want it to fall withing the bounds of the cell.
Because I use a UITableViewStyleGrouped UITableView I would like the color to ...
0
votes
2answers
2k views
Strange crash (EXC_BAD_ACCESS) scrolling UITableView reentering app after background
I'm new to iOS develop and I cannot figure out this strange bug.
I describe the problem here:
I'm using an UITableView with standard cell with subtitle and UIImageView. The scrolling is ok till I ...
1
vote
1answer
1k views
How to display left delete button UITableViewCell
I have implemented the swipe to delete method and everything works perfectly. What do I need to do in order to have the row of delete buttons on the left side of the cell?
Any help would be greatly ...
3
votes
2answers
4k views
Dynamically add and remove UITableViewCells to UITableView
I'm building an app where a user is able to provide different usernames that he/she has. The vision is, the user is able to add and remove UITableViewCell to enter a username.
Right now I have a ...
2
votes
1answer
2k views
Cant access TableViewCell elements using UI Automation
I have a custom Table View Cell that displays the details of a Conference Call. The body of the cell's constructor is below:
- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString*) ...
1
vote
3answers
3k views
UITableViewCell backgroundView image resizing?
I am using an image to display the whole content of a UITableViewCell and it's set using the backgroundView property.
My problem is that it is always scaled to fit the cell. Is there a way to disable ...
3
votes
1answer
799 views
How to use UITextView in UITableViewCell with variable height?
I am interested in creating a UITableViewCell with a UITextView inside of it, which adjusts its height (to a certain maximum) as the user types more or less text into the UITextView. I know how to add ...
2
votes
3answers
505 views
UILabel backgroundColor in UITableViewCell always reverts to initial value
In my app, I have a UITableViewCell which is used to display a background color setting. In the detailTextLabel, it displays the name of the color with the background set to the actual color, e.g. ...
0
votes
2answers
952 views
UISwitch and UITableViewCell iOS4
Caveat: I have looked for the answer to my question and several come close, but I'm still missing something. Here is the scenario:
I want a way to create UITableViewCells that contain UISwitches ...
4
votes
3answers
4k views
UITableViewCell custom reorder control
Is there any way to change the image of the reorder control that is displayed when the UITableView is in edit mode? I have a UIImage that I’d like to display instead of the usual grey bars.
Do I have ...
0
votes
1answer
952 views
Question on how to add a UIview as a subview to a UITableCell
I've got a question on how to add a UIView to a UITableViewCell.
In my learning Project I've got a UITableViewController (TableTestViewController, a UITabelViewCell.xib (MainTabelCell.xib) and a ...
0
votes
1answer
420 views
How can I use drawRect to load an image in a UITableView
I have a grouped UITableView with some large images. However, scrolling performance is quite poor (note: it was excellent before the iOS 4 upgrade, now it's very jittery). I've read that using ...
2
votes
3answers
6k views
How to set UITableViewCellStyleSubtitle textAlignment to center in iPhone iOS4?
Since upgraded XCode to Version 3.2.3 with iPhone SDK 4 my code doesn't work anymore.
I have a default cell with style UITableViewCellStyleSubtitle and want to set the textAlignment of textLabel and ...
4
votes
1answer
2k views
Lazy load images for UITableViewCells from NSDocumentDirectory?
I have a UITableView in my app in which I load several images from the NSDocumentDirectory. It works, but when scrolling up and down, the app seems to freeze a bit, most likely because of the images ...
11
votes
3answers
8k views
UITableViewCell Custom accessory - get the row of accessory
I have a pretty big issue. I am trying to create a favorite-button on every UITableViewCell in a UITableView. That works very good, and I currently have an action and selector performed when pressed.
...