sections

What sections are required for a usable ELF executable?

I'm creating an ELF executable file and I need to know what sections are required by the operating system in order to load and execute it. Details: OS: Ubuntu 10.04 (64-bit) Kernel version: 2.6.32-24 Architecture: i386 I realize that the following would probably be necessary: .text .symtab .rel.text Are t...

iOS - Multiple sections in UITableView with the same objects

I am trying to make a tableView that contains notes. The notes are tagged by the user. Each note might have several tags. I want to be able to sort the notes by tag into different sections. If a note has several tags I want the note to appear in all the different sections that the note is tagged for. Right now I am using the NSFetchedRe...