Tagged Questions
0
votes
3answers
735 views
How do i pop up a window when a user taps on the particular row in my application?
How to show a pop up window when the user clicks on the particular field in my table view.
It should pop a window ant it should display the user contact information.
I do not want to use navigationbar ...
1
vote
1answer
112 views
Best practice to use UIImages inside a UITableViewCell
If I'm loading images from the phone into a TableView about 50-60 entries, which method suits best?
[UIImage imageNamed:@"page02Background.png"];
OR
[UIImage imageWithContentsOfFile:[[NSBundle ...
1
vote
1answer
542 views
Add editing elements to UITableViewCell
I have a couple of rows in a table view which I like to edit.
I thought that setEditing method would give me a Edit and Delete button, but it only shows a Delete button. Because I don't have a detail ...
0
votes
2answers
267 views
change height of custom Dynamically problem iphone
Hi every one i have use two custom cell in a table view at a time .
Cell one contains labels and buttons
Cell Two Contain next and previous Button
i am adding cell Two at last index of the table ...
1
vote
1answer
611 views
How to remove disclose indicator button from left side and always show delete button on right side in UITableView?
I create a UITableView and show it on Edit mode, In edit mode a (-) sign was showing on left side of each row, when pressing this button a Delete button come's from the right side and by pressing this ...
2
votes
2answers
1k views
Edit Mode in UITableView
So i've implemented the
- (BOOL)tableView:(UITableView *)tableView
canEditRowAtIndexPath:(NSIndexPath *)indexPath
and
- (void)tableView:(UITableView *)tableView
...
2
votes
1answer
709 views
Cannot change UIImageView frame in a custom table cell
I have a custom table cell. In it I have put (via the IB) an image view of a certain frame
In 'cellForRowAtIndexPath', under certain conditions, I would like to modify the frame of this UIImageView, ...
1
vote
1answer
866 views
Custom touch area on tableview cell with checkbox iphone
I've added a checkbox to a table view cell which is a custom button with two images. Clicking this works fine as I can check and uncheck.
The problem is when you click the rest of the row it still ...
1
vote
0answers
532 views
How to Drag and Drop a Value from a UITableView Cell to another UITableView Cell in iPhone App?
I have two UITableView in my iPhone application and my task is to Drag first UITableView Selected Value into second UITableView.
It is possible or not ?
If is is not possible then please provide me ...
0
votes
2answers
283 views
Cannot select the cell but i can set the textLabel
I just want to select my first cell of my first section, its something simple but it dont want to work...
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath ...
0
votes
2answers
505 views
Ceating UITableViewCell on each time cellForRowAtIndexPath calls
I have created a custom UITableView cell and it has 4-5 various components. Some times I create UIViews from CGRectMake and some times based on some x, y coordinate calculations I position some ...
2
votes
1answer
943 views
UIImageView simply does not appear in custom UITableViewCell
I have a table cell to which I'm adding subviews programmatically. All the textual subviews work fine, but I can't get an image subview working at all.
You'll notice that I set the background color ...
2
votes
5answers
226 views
Apple's UIKit experience versus .net experience
I am new to iPhone programming. Coming from a .net background, I find Apple's UIKit really difficult to use. For example, creating a simple static table view requires me to implement a lot of ...
1
vote
4answers
2k views
how to load image in background in UITableCell in iphone application
Hi
I have develop an RSS application. in My table cell I am displaying images which i retrive from imge link in RSS feed and Title.
Images are loaded successfully but the problem is that it hang my ...
0
votes
1answer
286 views
Grouped table with image in first row (and section), the remaining ones having text with different length
I have a grouped table with two sections where I display text with different length and therefore cell height.
I have solved the problem with the different length/height with constrainedToSize in ...
0
votes
1answer
219 views
iPhone - UITableViewCell - Change NIB CustomCell by another NIB CustomCell when select a row?
I have one UITableView with a custom cell loaded from a nib file, it works fine.
When I select a row(named CustomCell1), It is possible to load another CustomCell2 and replace CustomCell1 with it?
I ...
0
votes
1answer
734 views
What is the proper way to align UITableViewCells when only some have an imageView?
I am new to iPhone programming and working on my first real application (i.e. one not written in a book or online) and I've run into a small problem which I could solve a multitude of ways, but feel ...
0
votes
1answer
94 views
How can we know which cell is touched in tablView when a custom button in the cell is touched?
I need to know which cell is touched when any button inside the cell is touched. I have custom UIButton *button1 in the cell and UIButton *button2 on the cell.imageView.image of the cell. I wrote ...
0
votes
2answers
1k views
iPhone: image in table cell - wrong position & not scaled correctly in iPhone 3.0
I have a custom table cell in an iPhone 3.x app to show basketball player data, including a picture. Here's my code from the table controller:
UIImageView *theImage = (UIImageView *) [cell ...
0
votes
1answer
205 views
How can get image from a path in to UITAbleViewCell?
I have the following path in NSString *path1,
/Users/srikanth/Library/Application Support/iPhone Simulator/User/Applications/9E6E8B22-C946-4442-9209-75BB0E924434/Documents/snook.jpg
How can I ...
2
votes
1answer
1k views
how can load images from plist in to UITableView?
I have stored the videos and the thumbnail images of the videos in Documents folder. And I have given the path in plist. In plist I took an array and I added directories to the array.
And in the ...
0
votes
1answer
255 views
How can we show the preview image of the video in table view cell?
I have a table view and if we touch a cell a video plays. I need to show the preview image of the video in the UITableViewCell. I have kept some dummy image in the cell at image place and remaining ...
0
votes
2answers
248 views
How to set the the height of cell progamatically without using nib file?
This is my program
- (void)viewDidLoad {
[super viewDidLoad];
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
self.title = ...
3
votes
2answers
957 views
how to change the colors of seperators based on section
I am having two section in my table view. I used the setSeperatorColor property to change the color of the seperator. It is actually changing the color of both the sections. Is it possible to change ...
3
votes
1answer
566 views
custom uitableviewcell for login input - username & password
I want to create a simple table view with one section and two rows - one for username and another for password, similar to Skype login (screenshot here: ...
0
votes
1answer
1k views
Changing custom cell appearance when entering editing mode
I have a table with custom cells, that I built in IB. When entering editing mode, content of all cells is moved to show delete edit control. My question is where can I adjust the cell appearance ...
0
votes
2answers
327 views
iphone using 2 tableview
I 'm a iphone programming newbie. I m trying to implement an app with multi-level tableviews.
The idea is if someone selects something on the first screen say then a new view opens(tableview)
car ...
0
votes
1answer
996 views
Custom UITableViewCell with 2 UILabel's resized
I'm struggling to create a custom UITableViewCell (in IB) that has a UIImageView on the left, fixed to the top left corner, then 2 UILabel's adjacent to it, side by side. So the cell looks something ...
4
votes
1answer
615 views
iPhone UITableViewCell selectionStyle when editing?
I know I can change the selectionStyle of a UITableViewCell to make it highlight blue or grey when selected, but how can I change this when in editing mode?
I don't want the cell to normally by ...
0
votes
1answer
736 views
Why are the contents of my UITableViewCell disappearing?
I am learning about using the checkmark cell accessory and am wondering why the contents of my cell is disappearing when toggling it.
Here is my code:
+ (void) toggleCheckmarkedCell:(UITableViewCell ...
0
votes
3answers
1k views
How to get the same UITableViewCell layout as in the Address Book app?
I currently have a custom UITableViewCell which contains a few labels, and an image.
The "main" label is used to display people's names. Currently, I'm styling it in bold text.
What I'd like to do (to ...
0
votes
1answer
754 views
UIColor Function Crashes
Okay, so I have a UITableView that I want to apply themes to. I think I've figured out how to do it. What I do is when my view loads, I call a function called "[self getValues]". Here is how it looks:
...
1
vote
3answers
3k views
UITableView slow, even with just a few objects?
- (void)viewDidLoad {
[super viewDidLoad];
[self.tableView setRowHeight:100];
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
[self.view ...
10
votes
6answers
5k views
How do I add a UIImage to grouped UITableViewCell so it rounds the corners?
I'm trying to add images to table cells in a grouped UITableView but the corners of the images are not clipped. What's the best way to go about clipping these (besides clipping them in Photoshop? The ...
1
vote
1answer
840 views
How to show multiple customcell and a custom section header in one uitableview?
I want to create a tableview like this. All sections have custom section header views.
The first row of first section contains a custom row rest of the first section cell's are another custom cell. ...
1
vote
1answer
872 views
is there a way to show Uitableviewcell selection on limited frame?
i have a uitableview cell added some labels something like this
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString ...
2
votes
4answers
3k views
Objective-C: UITableView cells get written over each time when scrolling up and down
I have a UITableView that gets populated via CoreData, and have just noticed something strange. I have about 20 rows or so in the UITable, and when I scroll down the table and back up again, the ...
0
votes
2answers
775 views
UITableViewController loads empty view first, but then loads correctly after second load
I have a UITableViewController which in it's tableView:didSelectRowAtIndexPath method, sets up a view controller, and calls
[self.navigationController pushViewController: viewController ...
2
votes
2answers
4k views
UISearchBar in a UITableView
I'm trying to mimic the behaviour of a table view like one in the iPod app for Artists - it's a sectioned table view with a section index on the right and with a search bar at the top, but initially ...
3
votes
1answer
4k views
How to make custom TableViewCell with initWithStyle after 3.0
I am trying to have custom TableViewCell with initWithStyle, since it says initWithFrame is deprecated after 3.0. Everything worked fine with initWithFrame before.
Is there any tutorials or sample ...
7
votes
2answers
10k views
UITableViewCell transparent background (including imageView/accessoryView)
When I set the UITableViewCells backgroundColor to a semi-transparent color, it looks good, but the color doesn't cover the entire cell.
The area around the imageView and accessoryView are coming up ...
11
votes
4answers
9k views
Adjusting the positions of the labels in a UITableViewCell
I'm using a UITableViewCell with UITableViewCellStyleSubtitle. However, because of the background image I'm using for the cell, I don't like where the detailTextLabel is going. I want to move it and ...
20
votes
7answers
18k views
Changing UITableViewCell textLabel background color to clear
In my app I have a table view with customViewCells. I subclassed the UITableViewCell class and added an image that will load async and for the text I use cell.textLabel.text = @"someThext".
For the ...
0
votes
1answer
250 views
UITableViewCell changes from 2.1 to 3.0 - Duplicate Cells
I have a subclass of UITableViewCell that I create for a UITableView. Let's say I have 26 cells (letters of the alphabet). In SDK 2.1 I load the first six cells, A->F, then scroll down and it loads ...
0
votes
2answers
2k views
iPhone - UITableView not calling didSelectRowAtIndexPath method in 3.0 SDK
I have an iPhone app that works fine in 2.x version of the SDK. When I upgraded to 3.0, the didSelectRowAtIndexPath method is no longer called, so the action when a user highlights a row doesn't ...
4
votes
6answers
2k views
iPhone SDK 3.0 Vs. 2.2.1
I just installed iPhone SDK 3.0 and found that the text property of UITableViewCell is not used anymore, and should use textLabel.text instead. Does this mean that I have to know the current system ...
3
votes
3answers
10k views
selection color for a UITableViewCell
If I have a custom UITableViewCell that doesn't use the textLabel built in to the cell but instead does its own drawing, how can I change the appearance of the contentView on selection, like it does ...
