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)
Related
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 5 years ago.
Improve this question
In an iPhone, you can clear the RAM by holding down the power button, releasing it and then holding down the home button. I want to achieve this programmatically.
There is no public API to do this, and doing it with the button combination is generally a bad idea anyway.
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.
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
There are a few buttons, labels and text fields for username and password.
I was thinking it might have to do with one of the options in Attributes Inspector.
What can I do to make sure everything is aligned to center?
Use autolayout. Here's a good tutorial: http://www.raywenderlich.com/83129/beginning-auto-layout-tutorial-swift-part-1
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
How do I set multiple styles for different pieces of text inside a TextView? I have searched it out and found it is possible in Android, but is it possible in iOS? If Yes then how do I proceed?
Thanks in advance!
UITextView has an attribute called attributedText that you can call upon, see:
Accessing the Text Attributes
You can also set some of the attributes in the Attributes Inspector in Interface Builder.
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.