Switch from UIView to ScrollView in Swift
up vote
0
down vote
favorite
Originally, the number of menus was one, but it was changed to more than one.
So I want to change the UIView (Container View) so that I can scroll horizontally.
Shop Menu View Cell is TableView -> TableViewCell -> TableViewCell (This) on the screen.
I tried several ways to switch to the horizontal scroll view.
I have separated the Container View and made it into a Cell
I also tried adding Scroll View or UICollectionView.
But all the way was not what I wanted.
Perhaps the Shop Menu View Cell is due to having passed the TableView twice.
I could not solve it for four days.
Please give me a hint how to implement.
ios swift uitableview uiview
|
show 2 more comments
up vote
0
down vote
favorite
Originally, the number of menus was one, but it was changed to more than one.
So I want to change the UIView (Container View) so that I can scroll horizontally.
Shop Menu View Cell is TableView -> TableViewCell -> TableViewCell (This) on the screen.
I tried several ways to switch to the horizontal scroll view.
I have separated the Container View and made it into a Cell
I also tried adding Scroll View or UICollectionView.
But all the way was not what I wanted.
Perhaps the Shop Menu View Cell is due to having passed the TableView twice.
I could not solve it for four days.
Please give me a hint how to implement.
ios swift uitableview uiview
You mean you want to make the contents in your tableView cell scroll horizontally?
– 0xa6a
Nov 19 at 7:30
More precisely, I want to create multiple Container View and then scroll.
– Enkha
Nov 19 at 7:36
Did you tried using table view with container views(as tableView cell)?
– 0xa6a
Nov 19 at 7:39
I tried it but it did not work. If it is the correct implementation, I will try again.
– Enkha
Nov 19 at 7:41
From what I know, this is the appropriate implementation. But I may miss some points.
– 0xa6a
Nov 19 at 7:46
|
show 2 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Originally, the number of menus was one, but it was changed to more than one.
So I want to change the UIView (Container View) so that I can scroll horizontally.
Shop Menu View Cell is TableView -> TableViewCell -> TableViewCell (This) on the screen.
I tried several ways to switch to the horizontal scroll view.
I have separated the Container View and made it into a Cell
I also tried adding Scroll View or UICollectionView.
But all the way was not what I wanted.
Perhaps the Shop Menu View Cell is due to having passed the TableView twice.
I could not solve it for four days.
Please give me a hint how to implement.
ios swift uitableview uiview
Originally, the number of menus was one, but it was changed to more than one.
So I want to change the UIView (Container View) so that I can scroll horizontally.
Shop Menu View Cell is TableView -> TableViewCell -> TableViewCell (This) on the screen.
I tried several ways to switch to the horizontal scroll view.
I have separated the Container View and made it into a Cell
I also tried adding Scroll View or UICollectionView.
But all the way was not what I wanted.
Perhaps the Shop Menu View Cell is due to having passed the TableView twice.
I could not solve it for four days.
Please give me a hint how to implement.
ios swift uitableview uiview
ios swift uitableview uiview
asked Nov 19 at 7:11
Enkha
1438
1438
You mean you want to make the contents in your tableView cell scroll horizontally?
– 0xa6a
Nov 19 at 7:30
More precisely, I want to create multiple Container View and then scroll.
– Enkha
Nov 19 at 7:36
Did you tried using table view with container views(as tableView cell)?
– 0xa6a
Nov 19 at 7:39
I tried it but it did not work. If it is the correct implementation, I will try again.
– Enkha
Nov 19 at 7:41
From what I know, this is the appropriate implementation. But I may miss some points.
– 0xa6a
Nov 19 at 7:46
|
show 2 more comments
You mean you want to make the contents in your tableView cell scroll horizontally?
– 0xa6a
Nov 19 at 7:30
More precisely, I want to create multiple Container View and then scroll.
– Enkha
Nov 19 at 7:36
Did you tried using table view with container views(as tableView cell)?
– 0xa6a
Nov 19 at 7:39
I tried it but it did not work. If it is the correct implementation, I will try again.
– Enkha
Nov 19 at 7:41
From what I know, this is the appropriate implementation. But I may miss some points.
– 0xa6a
Nov 19 at 7:46
You mean you want to make the contents in your tableView cell scroll horizontally?
– 0xa6a
Nov 19 at 7:30
You mean you want to make the contents in your tableView cell scroll horizontally?
– 0xa6a
Nov 19 at 7:30
More precisely, I want to create multiple Container View and then scroll.
– Enkha
Nov 19 at 7:36
More precisely, I want to create multiple Container View and then scroll.
– Enkha
Nov 19 at 7:36
Did you tried using table view with container views(as tableView cell)?
– 0xa6a
Nov 19 at 7:39
Did you tried using table view with container views(as tableView cell)?
– 0xa6a
Nov 19 at 7:39
I tried it but it did not work. If it is the correct implementation, I will try again.
– Enkha
Nov 19 at 7:41
I tried it but it did not work. If it is the correct implementation, I will try again.
– Enkha
Nov 19 at 7:41
From what I know, this is the appropriate implementation. But I may miss some points.
– 0xa6a
Nov 19 at 7:46
From what I know, this is the appropriate implementation. But I may miss some points.
– 0xa6a
Nov 19 at 7:46
|
show 2 more comments
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
To create editable forms of data display for static information, static TableViewController
is best choice. As it automatically adjust your view when keyboard appear and other many feature, along with scroll. Plus you can directly outlet all the components to your controller class.
Your view will look something like:
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
To create editable forms of data display for static information, static TableViewController
is best choice. As it automatically adjust your view when keyboard appear and other many feature, along with scroll. Plus you can directly outlet all the components to your controller class.
Your view will look something like:
add a comment |
up vote
0
down vote
accepted
To create editable forms of data display for static information, static TableViewController
is best choice. As it automatically adjust your view when keyboard appear and other many feature, along with scroll. Plus you can directly outlet all the components to your controller class.
Your view will look something like:
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
To create editable forms of data display for static information, static TableViewController
is best choice. As it automatically adjust your view when keyboard appear and other many feature, along with scroll. Plus you can directly outlet all the components to your controller class.
Your view will look something like:
To create editable forms of data display for static information, static TableViewController
is best choice. As it automatically adjust your view when keyboard appear and other many feature, along with scroll. Plus you can directly outlet all the components to your controller class.
Your view will look something like:
answered Nov 19 at 7:48
rptwsthi
8,50485292
8,50485292
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53369858%2fswitch-from-uiview-to-scrollview-in-swift%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You mean you want to make the contents in your tableView cell scroll horizontally?
– 0xa6a
Nov 19 at 7:30
More precisely, I want to create multiple Container View and then scroll.
– Enkha
Nov 19 at 7:36
Did you tried using table view with container views(as tableView cell)?
– 0xa6a
Nov 19 at 7:39
I tried it but it did not work. If it is the correct implementation, I will try again.
– Enkha
Nov 19 at 7:41
From what I know, this is the appropriate implementation. But I may miss some points.
– 0xa6a
Nov 19 at 7:46