Questions tagged [sections]

697 questions
0
votes
1 answer

NSFetchedResultsController wrong sections number

My steps are: Push TVC. Init new FRC with Managed Object Context. Perform fetch. Got two sections with one row in each section. Execute fetch request used in FRC. Got array with two elements. Delete last row and save MOC. Pop TVC. Push TVC. Init…
adnako
  • 1,287
  • 2
  • 20
  • 30
0
votes
1 answer

What is the purpose of compulsory sections?

I understand the benefit of required: false sections in MVC4. They are simply optional parts of a layout that will not display if the View does not contain them. But what is the benefit of required: true sections? Shouldn't something in a required:…
Djentleman
  • 1,137
  • 5
  • 13
  • 28
0
votes
1 answer

Custom UITableView cells to detail view

Image of what I want to do This is something what I want to do but in a custom uitableviewcell (image, title/subtitle [be done via label if needed]) and multiple sections. The image above I did it via storyboard (static cells) It is going to have…
0
votes
1 answer

Page footer split into more sections

I know that Crystal Reports offers the possibility to split the page footer into sections (section a, section b, ...) that can be printed depending on some conditions. If condition 1 is true then print section a, else section b and so on. I have to…
Razvan
  • 31
  • 2
  • 6
0
votes
1 answer

How to display section header\Tile after sorting uitableview

I am sorting my tableview by Distributor using the code below (it was Alphabetical by product) NSSortDescriptor *aSort =[[NSSortDescriptor alloc] initWithKey:@"Dis" ascending:YES]; [distribArray sortUsingDescriptors:[NSMutableArray…
AhabLives
  • 1,308
  • 6
  • 22
  • 34
0
votes
1 answer

Render Specific Section of Views in ASP.Net Mvc 4

In Asp.Net Mvc when you Render view in a layout that defines some Sections, all Sections in view placed in proper Sections as you defined in layout file, consider a situation when you want to RenderPartial a view (which have some Sections) in…
mc.parsa
  • 56
  • 1
  • 6
0
votes
1 answer

NSIS Components page comes after the files has been installed?

I got this very odd issue with my NSIS installer, it is showing the components page/sections, after everything has been installed?? I haven't got this on an another installer of mine and I can't figure out what seems to be causing…
0
votes
1 answer

ios - How to disable the pull and push of the footer

This question has been thrown around without an answer. YES, we can "hide" the viewForFooterInSection no problem: In CustomFooterView.m { self.hidden = YES; } This make the footer invisible, just as making the [UIColor clearColor] would work. And…
user1424344
  • 5
  • 1
  • 2
0
votes
1 answer

Section Date Titles - a section for each day with Core Data

I'm piggy backing off this previous question that was never answered - Date Section Titles don't work Can anyone provide code to help me (and the community) properly convert Apple's project DateSectionTitles…
user1424344
  • 5
  • 1
  • 2
0
votes
1 answer

Can anyone tell me where can I find and example of a lazy listview with sections?

Can anyone tell me where can I find and example of a lazy listview with sections? it would be perfect one version of https://github.com/thest1/LazyList/ with sections incorporated. Many thanks
tuxdroid
  • 13
  • 1
  • 4
0
votes
1 answer

Segue'ing to detail UItableView while using Sections

Can someone please help me. Im very new at this and trying to seque to my detail screen, which works fine as long as i don't use sections. The files i try to grab in the detail are html files. (numbered 1 - 53). When is seque to detail without…
JsChoice
  • 109
  • 8
0
votes
1 answer

Multiple sections array in tableview

First off i would like to say i had a similar post like this but some how it just disappeared so if it reappears it was not intention to double post. I created a uitableview with 3 sections and is being populated from 3 different arrays -…
Sleep Paralysis
  • 449
  • 7
  • 22
0
votes
1 answer

Xcode - TableView PList Items into Sections A-Z

So I have a list.plist with all my items in it. They are all strings with a Key and a Value. I have 'courses' declared as a NSDictionary and 'courseKeys' declared as NSArray. To load all the items into my table-view I used this code My question is,…
0
votes
2 answers

iOS - Add a cell to empty UITableView Section w/ Core Data and NSFetchedResultsController

I'm using Core Data and an NSFetchedResults controller to populate a UITableViewCell (plain style) in my app. The TableView has 3 sections, each with a viewForHeaderInSection and a viewForFooterInSection. The user will be entering items that will be…
mhbdr
  • 753
  • 2
  • 10
  • 26
0
votes
1 answer

set BackgroundImage to UITableView Section (viewForHeaderInSection)

I have tried it with - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 100)]; …
user1431608
  • 1
  • 1
  • 2