Tableview page transformation like swiping cards in swift 3 - uitableview

I am working with custom xibs for tableview .My requirement is to use swipable cards . I followed this https://stackoverflow.com/a/35883176/5362916 and achieved some part but i want to show next cell after swiping 1st cell similar to feedly & inshorts app . I want to use tableview because there are two custom cells . Please help me to achieve this using tableview . Is it possible with tableview? otherwise any other .

Related

Does any one know how to implement to display the list of contacts from phone book from search bar in a tableview cell?

How to achieve the UI attached in a screenshot? . I have a tableview and multi custom cells inside it.From One custom cell, while searching the name or phone number i want to display the contacts retrieved from Addressbook in that tableview itself as new view or a tableview.I dont want to navigate to address book or navigate to custom search controller. Does any one know how to implement this?
Like the screenshot attached.enter image description here
I implemented some time ago this kind of textview and solved my problem.
I think you should implement ZTDropDownTextField this is third party class, Please check below link
Note : This is only for UI like your screenshot
ZTDropDownTextField

Add multiple UITableViews inside UITableViewCell

I want to add a tabs pager view with 5 tabs and each tab contain uitableview as subview on uitableviewcell . The problem at the height of each uitableview , I should update the cell height every the user swipe or press on any tab and reload the tableview each time . Is it correct ? . Sometimes, the view is hanged . So Is there any solution for this problem .
Thank you,
Nada Gamal
Looks like the architecture of the app is a bit off. You sure should avoid such a deep nesting of tableViews within tableViews. There are multiple & excellent native UI alternatives like a StackViews or traditional UIScrollViews, Collection Views that you should consider utilizing.
Such a hierarchy of tableViews is definitely not recommended & you should evaluate alternate implementation strategies rather than waste valuable time debugging this.

Accordion for UIView and SubViews in Swift 3

I'm trying to build an accordion style ( expand/collapse ) list in IOS/Swift 3. Was confused on which approach to follow like a static UITableView ( since my sub divisions have different types of Ui Controls in the cells ie some have checkbox ,spinner, textview etc. with labels to show configure a list of different Valves) , UIView with nested UIViews sections with an option to clip views . But both have been messed up with without any success.
Illustration
http://imgur.com/a/Bs9SF
Below are the links I followed
https://github.com/justinmfischer/SwiftyAccordionCells
http://www.appcoda.com/ios-static-table-view-storyboard/
https://github.com/Weebly/TableSchemer
https://github.com/Alliants/ALAccordion
Any other approach without UITableView?
Please help . Thanks in advance .
Static vs dynamic table will depend on your data source. Does your data source for your table change? If so you'll want a dynamic table, if not then you can design it out in a static one.
As for the accordion feature, what I've done in the past is to add a tap gesture recognizer to the header view of each section. When the tap is detected I change my datasource and reload the table view. What happens is that number of rows for section is called on reload, and I return 0 so that none of the rows show. When tapped again you can go back to showing the normal number of rows.
To get the animation you need to use delete rows with index paths and animate it.

Is it Possible To Design a TableView as a Grid Style ?

i am trying to design a table View just like collection View, for example their is two cell in a every row . . .Found similar solution on https://github.com/scasserly/GridTableView but i can not able to understand the solution and also it isn't working now . .

How to drag and reorder UITableViewCell from one UITableView to another similar to trello app?

I want to make animations like the "trello" iOS app . In that app there are many uitableviews placed horizontally on a scrollview. Now user can long press any rows of the table and can drag it to another table. The user can also reorder rows in the selected table or in other tables as well .I have tried some solutions and logic that allow user to drag rows to another table but its not working properly . It is just in the starting stage so it have many bugs.
If you can provide me some samples that can help me to my goal or some ways which i should do to make this features than that would be much appreciated .
Thanks.

Resources