Tagged Questions
1
vote
1answer
31 views
ELI5 how to add sections to a UITableView
Can someone please explain in basic terms how the flow for adding sections works?
I have an array of objects that I am currently populating into a single sectioned UITableView, however i would like ...
1
vote
0answers
53 views
searching in UITableView, but keep each section with a result
When I look at this table for a product, I force myself to search by product name search.
Within this list, you will find the name, image, product description and thumb.
See the code below:
-(void) ...
0
votes
1answer
113 views
Resize UICollectionElementKindSectionHeader
I'm trying to resize a UICollectionElementKindSectionHeader but a didn't find any way.
Can anyone help me please?
Thanks!!
0
votes
2answers
127 views
Multiple sections in UITableView
Actually i'm using only one section. I sort my data stored in core data by date.
I want to have two sections (latest and history). In my first section "latest" I want to put my latest date and in ...
0
votes
1answer
100 views
UISearchBarDelegate on UITableView with Sections Issue
I'm having issues with implementing the UISearchBarDelegate on my UITableView with sections issue where every time I try to search for something inside the UITableView, either it doesn't display the ...
0
votes
3answers
165 views
iPhone Core Data how to add date sections to events with timestamps?
I have two types of Events stored in my core data stack, each one having a timestamp. I'm interested if there's a good way to display these records in a UITableView with sections, where each section ...
0
votes
1answer
139 views
Custom Tableview section header is all black
I have a tableview section header, for which I'd like to add a custom view. When the tableview loads, it appears black, shown here: http://postimage.org/image/luluolc57/ When I start scrolling, and ...
2
votes
1answer
151 views
NSFetchedResultsController has 0 sections
I'm having a problem I don't know where it comes from, related to CoreData. In my database, a have a set of categories (with name and description), which contain elements (using a one-to-many ...
0
votes
3answers
237 views
Crashed With Implementing Multiple Sections In UITableView
I'm now learning UITableView class on iOS development. I want to implement three sections in my tableView, but it always crashes when I tap the tabBarItem which contains the tableView. My code is ...
1
vote
0answers
56 views
Hidding/Deleting Table View Sections
I'm developing an app similar to that of the contacts app. It has a list of items and each item has a detail view. The detail view is a table view and displays values such as name, place, value, etc. ...
0
votes
1answer
239 views
How to rearrange sections, when using Core Data
Is there any way I can rearrange the sections of a Table View that uses Core Data, without using a Sort Descriptor?
The kind of sort I need is not alphabetical, and it'll vary on time (I have read ...
0
votes
0answers
67 views
Modifying value of UITableViewCell of different row on selection of one row of UITableViewCell
I am a novice in objective C. I am trying to use two sections separately with two rows in them. I want to make these rows work like a switch. As in if one of them is selected, the other should ...
3
votes
2answers
392 views
Error while deleting a section from my UITableView
I need your help :(
I'm working on a iOS application in which i had to remove some rows and sections in a UItableView.
I'm on Xcode 4.
I associate my tableView with NSarray and dictionary, like ...
0
votes
1answer
223 views
Create a sectioned UITableView using NSFetchedResultsController
I am trying to create a UITableView with two different sections. I know I can group them on an attribute of my managed object. For instance if I'd like to group them per name I'd do:
...
0
votes
1answer
676 views
Specific uitableviewcell's in section of uitableview
I have this code for each index of my uitableview
if (indexPath.row == 6){
UIImageView *blog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blog.png"]];
[cell ...
0
votes
3answers
46 views
if I have 6 sections with 2 displayed on the screen, and I scroll down.. Do I effectively have 2 sections (reusability) or 6 sections?
This may be a very basic question. But I am finding it confusing with my tableView acting weird when I scroll up and down.
So UITableViewCells are Reusable !! So each row in my tableViewCell is ...
-1
votes
2answers
651 views
How to make the tableView look like the iPhone Settings Page
How does the table view appear with rounded corners (as shown below)?
I would appreciate any sample code or may be some tutorial for having the table look rounded in the corners. Each section title ...
2
votes
1answer
1k views
Section within a section - UITableView -
I just have a question with regards to the tableView.
I know we can return the number of sections and rows with.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- ...
0
votes
1answer
1k views
Setting the frame of the section index for a UITableView
Short question, I've been googleing around but cannot come up with a solution. I have a working UITableView with an index on the right side. At the top of the table I have a search field of approx. 44 ...
1
vote
1answer
182 views
About sectioning your UITableView
Hey everybody,
i'm working on a tableview, which displays more than one line of text in its cell. But what my question is: I want to have two sections, which I've already done. But is it possible to ...
2
votes
3answers
1k views
UITableView Sectionheaders each with a button, but just the first Button sends action
i add a button to my Sectionheaders, but only the first Button works.
The other Buttons neither show a animation on touch nor send a action.
- (UIView *)tableView:(UITableView *)tableView ...
1
vote
1answer
2k views
Change a UITableView row's section at runtime
I have a UITableView that is controlled by a NSFetchedResultsController.
Rows are organised into sections from a property of the row. But when I modify that property the application terminated with:
...
1
vote
2answers
321 views
hardcoded Tablecells in section 0, core-data fetched-results in section 1
my problem ist that i have UITableView with two sections.
In the first section i have objects of a NSArray and the second section should be filled with core-data results.
But if i use the ...
1
vote
5answers
6k views
didSelectRowAtIndexPath with section
I have a UITableView which I have assigned sections. When using didSelectRowAtIndex with indexPath.row I am not getting the correct value. Let's say I'm in section 2, then it starts the row index at 0 ...
0
votes
1answer
774 views
willSelectRowAtIndexPath Question
How do you add a second section (SECOND_SECTION) here to be excluded from selection when editing?
(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath ...
1
vote
1answer
252 views
Keep all section headers visible in a table view
I've build a table view with a number of section around 5 or 6.
I define my table view style as "plain". So at any time it keep one header on the top.
But I would like to keep all of my header ...
0
votes
1answer
260 views
UITableView displays no sections altough they are created
Relevant code here:
-(UITableViewCell*) tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*) indexPath
{
UITableViewCell *cell;
NSInteger currentRow = 0;
for (int i = 0; i < ...
0
votes
1answer
981 views
Objective-C Section Headers not appearing correctly?
I have a Station object defined as:
@interface RFStation : NSObject {
NSString *stationID;
NSString *callsign;
NSString *logo;
@end
I also have an NSMutableArray called 'StationList' ...

