What is that? Cell or Table? [closed] - ios

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I am finishing my first app adding an About Us section. I want to create something like this there:
I want to insert the FAQ and website link but what is that? Is a custom cell? a Table?
Now I am using a simple button but I think that the option in the picture is more.
It's probably something very simple, please help.

That is a simple grouped section in UITableView, though cell is more likely to be custom one.

Related

how can I make a view like this [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
This is a check-in view, when people clicked the check-in button and according to their check-in date, the progress on this line will proceed.
Can you guys give me some suggestions, I'm so confused by how to start layout.Using UIBezierpath or other cases of solutions.
And how to solve the massive UILabel like +5,Day1 to layout and make constrains.PS: I use Masonry to make constraints, but It's really massive.
You can do with UISlider, below are some examples
G8SliderStep
GCXSteppedSlider
StepSlider

How to make periodic table in objective-c? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to create an app that show periodic table but I don't know how to do that simply. one way i thought was UICollectionView but it is not good way. I want to know what can I search and look for.
Thank You !
I take it you're talking about the periodic table of elements?
A UICollectionView is indeed a good way. You should watch the keynote of the 2017 WWDC. They demonstrate that very thing using new features of UICollectionView added in iOS 11, but you could do it without those new features as well.

UITableViewCell Contact's app like [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
how can i create this kind of UITableViewCell where i can also set type of given string (for example email home, work, other)
I achieved something like this so far
You need to create a UITableViewCell subclass and add UI elements yourself (either in code or in interface builder).
There are a lot of tutorials out there about how to do that. (e.g. https://code.tutsplus.com/tutorials/ios-sdk-crafting-custom-uitableview-cells--mobile-15702)

Two tier expand and collapse in ios [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a task in which I need to implement two tier or two level expand-collapse functionality. For example if I clicking on a cell say C1, one more cell will be displayed say C2 and again if I click on C2, one more cell say C3 will be visible. Here clicking again on these cell will hide them respectively. I searched on google for this but didn't get anything so if you guys have any solution for this please help me.
Thanks in advance.
Have a look at this github repository. I've used it in the past, and it has the potential to do exactly what you seem to want to achieve.

What should I use, UITableView or UICollectionView? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I want to make a Google+ type card list (the home page in the ios app) on iPhone. I am confused that, should I use a UITableView with custom cells or a single column UICollectionView with custom cells?
Edit: I am concerned about performance and ease of development. But I think I got my answer as
I found UITableViewCell to easy to customize and use.
I think UITableView would work better for you.
In order to use UITableView, your class should conform to the UITableViewDelegate Protocol.

Resources