only one row select at time on UITableView multiple sections. (UITableViewCellAccessoryCheckmark) - ios

my english very poor.. sorry TT
only one row select at time on UITableView multiple sections. (UITableViewCellAccessoryCheckmark)
What should I do?

Try to Use thid Sample project CRMultiRowSelect for iOS may be helpful for you.

Related

What's the difference in rows and sections in NSIndexPath in Swift?

I can't seem to see what exactly a section is. I know what a row is in UITableViewController, but what is a section. Is it a separate piece of information? I'm a beginner and couldn't find a clear answer anywhere else on the web.
A section is a group of rows. For example, in the settings app, different rows are grouped into sections.
Sections can have titles and allow for information to be broken apart.

Design event view using swift

i want to make a view for event details, using swift, something like this one:
what do you suggest me to use? tableview? collectionview? every events has a different numbers of rows and every row can have a different height, example based on text.
Is there some example on the web?
Thanks!
I suggest a tableView and everything row should be in section.
Sections:
image section
action section
date section
and so for forward. For the sections you can use and enum so you don't use directly ints. Then every section has one row usually. The final design should result pretty clean.

How to display detailed row in TableView#2 when row in TableView #1 is tapped? (Swift - iOS)

I am kinda stuck in my iPhone app project (Swift, iOS, Xcode 7, using a StoryBoard), and I am hoping someone would be kind enough to give me a helping hand.
I am trying to link two Tableviews in such a way that when the user (me!) taps any row (each row = day of the week) in the 1st TableView it takes him to a more detailed row in the 2nd TableView; in a row, the user would enter info for 4 items, and in that 2nd TableView, the user would be able to add as many similar rows as he wishes to again enter different info for the 4 items such Time, Event, Place etc.
When I tried to create that 2nd TableView (dragged ViewController into StoryBoard, inserted TableView object, added 1 dynamic cell), I simply was unable to link it with the 1st TableView...
VoilĂ ... Any help will be hugely appreciated as I am new to that environment. Thanks in anticipation.
Cheers,
Laroms
It seems like you just need to link a NavigationController from one TableView to the second TableView. Make sure you right-click and drag the action to the appropriate methods.

TableView Collapse/Expand with sections

Question related to UITableView collapse and Expand mode with dynamic sections. We got the requirement of showing the number of cells which has the collapse and expand option and once user expand the cell which will be having the list of sections and cells.
For more info I am attaching the screenshot, and please suggest me the best approach.
There are plenty of libraries available for this and many more other requirements,check out this cocoacontrols
Apple has made a demo, the key is to manipulate your section header, detail check this
https://developer.apple.com/library/ios/samplecode/TableViewUpdates/Introduction/Intro.html

Is there a option to add a new row in shinobi grids?

First of all i am using shinobicontrols for developing interactive UI controls (Grids) for iOS using Objective c and please don't suggest me some other controls as an answer because i need to use only this.
I am half way stuck while using this control. i have downloaded demo code for grids provided by shinobicontrols (trial for 30 days). from : http://www.shinobicontrols.com/shinobigrids/product-tour/get-started-quickly-and-easily/
I was able to reorder rows and columns, edit contents of cell, re size column width by pinch gesture and much more.
But i couldn't add a new row or column to the existing grid. Just wanted to know whether this can be achieved.
Thanks in advance.
Edit the datasource (add/remove) item and just do [grid reload];
I think this should do.
The above answer seems to be correct. Adding my views Shinobi grids can be considered as UITableView cells, If you simply change the data source array of the tableview and call [tableview reloadData], number of cells displaying on the view will also change. There is no option to add a row still.
Look at this one. It is in alfa stage, but it will be quite a powerful in month or two, I would say. Any suggestions are welcome and it's free, of course. Number of rows and row content is fully controlled from delegate, so it is dynamic.

Resources