In my iPhone project I'm using a UITableview with UITableViewCells containing UITextfields. I have seen in many apps that it is possible to use a next button to jump to the next textfield in the next cell. What is the best way to accomplish this?
My idea is to get the indexPath of the cell with the textfield that is being editing and t...
I am look for file management features, such as:
folder listing
file listing
create/rename/delete folder
rename/delete files
move files among folders
via a UITableView. BSD-like licensed code preferred.
Thanks
...
Is there any way to customize the grey color of the alphabetic section index of a UITableView?
...
I have a tableView with several Sections being populated from a plist of NSDictionaries
How do I have it arrange the sections in the order they are in in the NSDictionary instead of alphabetically?
...
I have a UITableView within a nib file. It works perfectly with 4 or more cells. When I have only 2 or 3 cells and the screen is not completely filled with cells I have these empty cells (dark gray, which is actually just the background of my TableView) at the bottom.
However, they shouldn't be there, because my numberOfSectionsInTabl...
I want to add various things below a UITableView (group styled). Like images and buttons. So that they arrange themselves just below the table. (The table's height is variable).
How would I do this? Normally I guess you would just put them in the last cells of the table, but this doesn't seem possible with the grouped view, since it dr...
I want to use a UITableView for my settings screen. So that my settings view will look like apple does it, with a group table view, and then the UI elements to let you change settings.
So, it does not seem like the cells are loaded from an array, but seems like each one is customized.
Ideas on how to do this?
...
I have a view which contains a UIButton. When this is clicked, it calls a method that loads another NIB. Now, normally, that nib would load a view onto the stack, and everything would be fine. But, I am trying to load a Navigation Controller (so that I can have table views that are multiple levels deep), and all I get it errors.
What ...
Hi
I have set the background of my UITable with a custom image.
self.tableView.backgroundColor = [UIColor clearColor];
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]];
The problem I'm having is the background image is scrolling and doesn't look good at the top and bottom of the ...
I'm developing a demo RSS reader for iPhone. I obviously have a tableview to display the feeds, and then a detailed view. Some of this feeds have a thumbnail that I want to display on cell.imageview of the table, and some don't.
The problem is that when scrolling the table, loaded thumbnails start repeating on other cells, and I end up ...
Normally, the UITableView is something like this:
[ cell 1 ]
[ cell 2 ]
[ cell 3 ]
[ cell 4 ]
But I want to make my own UITableView like this:
| | | |
| c | c | c |
| e | e | e |
| l | l | l |
| l | l | l |
| | | |
| 1 | 2 | 3 |
| | | |
And I want the use...
Hi guys,
Little background, the table view is filled by a fetchedResultsController which fills the table view with Strings. Now I'm trying to add a button next to each String in each tableview cell. So far, I've been trying to create a button in my configureCell:atIndexPath method and then add that button as a subview to the table cell'...
I want to build an app that shows a empty tableview. Then users can write a text on a searchbar and when they click on Search button the tableview will be written with array items founded.
I've see this tutorial: link text, but I only need to search when user click SearchButton. How can I do this? What methods do i have to use?
I've ...
I have declared UITableView in .h file. I have 5 section in the table view, now I need to set the tableview.editing= yes only for section 4.
How can I display the + button beside section 4 and have all other sections in editing = NO?
myTableView = [[UITableView alloc]initWithFrame:CGRectMake(0,0,320,415) style:UITableViewStyleGrouped];...
In tableView of Style grouped,what is the meaning of Etched Raised Separator? and how to use a 1 px line or "Etched Lowered" Styled line instead of Etched Raised separator.
...
I have tableview which holds a list of data, when users press "Edit"
i add an extra row at the bottom saying "add new"
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
[super setEditing:editing animated:animated];
NSArray *paths = [NSArray arrayWithObject:
[NSIndexPath indexPathForRow:1 inSect...
Hi all,
I have a UITableView in iPhone with enough cell to make it scrollable.
I would like to have a subview display whenever I click on a cell, rather than using the navigation controller behaviour.
The problem is that I cannot calculate the CGRect exactly to have the subview always centered in page, because the CGRect is calculated ...
I have a list of websites in a plist, when the app loads this populates a tableview (which is inside a navigation controller)
But I have added an add button to the navigation bar and then created another View Controller to deal with inputting of the new website (Like Title and URL). It is very similar to how the contacts app looks. Ther...
I have a tableview with cells that have a scrollview in them. The scrollview is paged, 2 pages to be exact, and is meant to be able to quickly compare two small blocks of text.
I'm trying to find a way to remember what the content offset of the scrollview is. Cell reuse is killing me.
I've tried resetting the offset in prepareForReuse ...
Hi guys,
trying to write this code since 2 days now, but i keep getting error, it would be nice if anyone could sort this out, thanks.
Basically its the same thing i doing from the tutorial on youtube.
awaiting a reply
#import "BooksTableViewController.h"
#import "BooksDetailViewController.h"
#import "MYbooksAppDelegate.h"
@implemen...