Constraints for labels with changing size Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How can foreign key constraints be temporarily disabled using T-SQL?UIScrollView Scrollable Content Size AmbiguityAuto Layout to dynamically size uilabel widthiOS add constraint for bottom of view to container centerswift: Adjust UIView height based on constraints insideTableviewCell dynamic height - auto layout issuesHow do I make text labels scale the font size with different Apple product screens?sending customCell label text to destination viewHow to set constraints to a tableView into a viewController?How to give dynamic height to labels contained withing stackview in swift
What is this clumpy 20-30cm high yellow-flowered plant?
Do I really need to have a message in a novel to appeal to readers?
Performance gap between vector<bool> and array
Generate an RGB colour grid
AppleTVs create a chatty alternate WiFi network
Dating a Former Employee
How come Sam didn't become Lord of Horn Hill?
Disembodied hand growing fangs
Illegal assignment from sObject to Id
If Windows 7 doesn't support WSL, then what does Linux subsystem option mean?
A term for a woman complaining about things/begging in a cute/childish way
Is there hard evidence that the grant peer review system performs significantly better than random?
How do I make this wiring inside cabinet safer?
What do you call the main part of a joke?
Is there any word for a place full of confusion?
What's the meaning of "fortified infraction restraint"?
Combinatorics problem on counting.
Amount of permutations on an NxNxN Rubik's Cube
How to compare two different files line by line in unix?
Can anything be seen from the center of the Boötes void? How dark would it be?
Drawing without replacement: why is the order of draw irrelevant?
What would you call this weird metallic apparatus that allows you to lift people?
Is it fair for a professor to grade us on the possession of past papers?
Putting class ranking in CV, but against dept guidelines
Constraints for labels with changing size
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How can foreign key constraints be temporarily disabled using T-SQL?UIScrollView Scrollable Content Size AmbiguityAuto Layout to dynamically size uilabel widthiOS add constraint for bottom of view to container centerswift: Adjust UIView height based on constraints insideTableviewCell dynamic height - auto layout issuesHow do I make text labels scale the font size with different Apple product screens?sending customCell label text to destination viewHow to set constraints to a tableView into a viewController?How to give dynamic height to labels contained withing stackview in swift
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Pic. 1

Pic. 2

Pic.1 - it is a structure of my ViewController. Label1 and Label2 have changing size (content comes from backend) for different users. If content of labels is small, I need to set Top Space constraint for TableView (vertical spacing) to Button (pic.1), but if content of labels is big, set Top Space constraint for TableView (vertical spacing) to Stack (pic.2). How to set constraints for TableView?
swift constraints
add a comment |
Pic. 1

Pic. 2

Pic.1 - it is a structure of my ViewController. Label1 and Label2 have changing size (content comes from backend) for different users. If content of labels is small, I need to set Top Space constraint for TableView (vertical spacing) to Button (pic.1), but if content of labels is big, set Top Space constraint for TableView (vertical spacing) to Stack (pic.2). How to set constraints for TableView?
swift constraints
So if I understand You correctly, You would like to set programically Top Constraint for TableView ?
– Sebastianor
Mar 22 at 10:29
@Sebastianor I use Storyboard, better to set constraints in Storyboard
– Stanislav Putilov
Mar 22 at 10:32
So what do you mean to create constrains for TableView? You can create two constrains as You said and set one of them on isActive = false.
– Sebastianor
Mar 22 at 10:40
add a comment |
Pic. 1

Pic. 2

Pic.1 - it is a structure of my ViewController. Label1 and Label2 have changing size (content comes from backend) for different users. If content of labels is small, I need to set Top Space constraint for TableView (vertical spacing) to Button (pic.1), but if content of labels is big, set Top Space constraint for TableView (vertical spacing) to Stack (pic.2). How to set constraints for TableView?
swift constraints
Pic. 1

Pic. 2

Pic.1 - it is a structure of my ViewController. Label1 and Label2 have changing size (content comes from backend) for different users. If content of labels is small, I need to set Top Space constraint for TableView (vertical spacing) to Button (pic.1), but if content of labels is big, set Top Space constraint for TableView (vertical spacing) to Stack (pic.2). How to set constraints for TableView?
swift constraints
swift constraints
edited Mar 22 at 10:12
Dávid Pásztor
23.4k83152
23.4k83152
asked Mar 22 at 10:06
Stanislav PutilovStanislav Putilov
388
388
So if I understand You correctly, You would like to set programically Top Constraint for TableView ?
– Sebastianor
Mar 22 at 10:29
@Sebastianor I use Storyboard, better to set constraints in Storyboard
– Stanislav Putilov
Mar 22 at 10:32
So what do you mean to create constrains for TableView? You can create two constrains as You said and set one of them on isActive = false.
– Sebastianor
Mar 22 at 10:40
add a comment |
So if I understand You correctly, You would like to set programically Top Constraint for TableView ?
– Sebastianor
Mar 22 at 10:29
@Sebastianor I use Storyboard, better to set constraints in Storyboard
– Stanislav Putilov
Mar 22 at 10:32
So what do you mean to create constrains for TableView? You can create two constrains as You said and set one of them on isActive = false.
– Sebastianor
Mar 22 at 10:40
So if I understand You correctly, You would like to set programically Top Constraint for TableView ?
– Sebastianor
Mar 22 at 10:29
So if I understand You correctly, You would like to set programically Top Constraint for TableView ?
– Sebastianor
Mar 22 at 10:29
@Sebastianor I use Storyboard, better to set constraints in Storyboard
– Stanislav Putilov
Mar 22 at 10:32
@Sebastianor I use Storyboard, better to set constraints in Storyboard
– Stanislav Putilov
Mar 22 at 10:32
So what do you mean to create constrains for TableView? You can create two constrains as You said and set one of them on isActive = false.
– Sebastianor
Mar 22 at 10:40
So what do you mean to create constrains for TableView? You can create two constrains as You said and set one of them on isActive = false.
– Sebastianor
Mar 22 at 10:40
add a comment |
1 Answer
1
active
oldest
votes
Embed your image,button two labels and stack in a view.
Then add following constraints
- Top, leading and trailing to new container view
- vertical space b/w container and table.
- Required constraints for your image,button two labels and stack
- Don't add bottom constraint for button.
- Add bottom spacing to stack to its superview(embedded container) with a >=.
- Height to container view with minimum height and set priority to low(250)


used your solution right now, it works greate. Thanx
– Stanislav Putilov
Apr 2 at 17:00
(y) happy coding
– Johnykutty
Apr 3 at 9:39
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f55297219%2fconstraints-for-labels-with-changing-size%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Embed your image,button two labels and stack in a view.
Then add following constraints
- Top, leading and trailing to new container view
- vertical space b/w container and table.
- Required constraints for your image,button two labels and stack
- Don't add bottom constraint for button.
- Add bottom spacing to stack to its superview(embedded container) with a >=.
- Height to container view with minimum height and set priority to low(250)


used your solution right now, it works greate. Thanx
– Stanislav Putilov
Apr 2 at 17:00
(y) happy coding
– Johnykutty
Apr 3 at 9:39
add a comment |
Embed your image,button two labels and stack in a view.
Then add following constraints
- Top, leading and trailing to new container view
- vertical space b/w container and table.
- Required constraints for your image,button two labels and stack
- Don't add bottom constraint for button.
- Add bottom spacing to stack to its superview(embedded container) with a >=.
- Height to container view with minimum height and set priority to low(250)


used your solution right now, it works greate. Thanx
– Stanislav Putilov
Apr 2 at 17:00
(y) happy coding
– Johnykutty
Apr 3 at 9:39
add a comment |
Embed your image,button two labels and stack in a view.
Then add following constraints
- Top, leading and trailing to new container view
- vertical space b/w container and table.
- Required constraints for your image,button two labels and stack
- Don't add bottom constraint for button.
- Add bottom spacing to stack to its superview(embedded container) with a >=.
- Height to container view with minimum height and set priority to low(250)


Embed your image,button two labels and stack in a view.
Then add following constraints
- Top, leading and trailing to new container view
- vertical space b/w container and table.
- Required constraints for your image,button two labels and stack
- Don't add bottom constraint for button.
- Add bottom spacing to stack to its superview(embedded container) with a >=.
- Height to container view with minimum height and set priority to low(250)


edited Mar 22 at 11:28
answered Mar 22 at 10:10
JohnykuttyJohnykutty
5,32263778
5,32263778
used your solution right now, it works greate. Thanx
– Stanislav Putilov
Apr 2 at 17:00
(y) happy coding
– Johnykutty
Apr 3 at 9:39
add a comment |
used your solution right now, it works greate. Thanx
– Stanislav Putilov
Apr 2 at 17:00
(y) happy coding
– Johnykutty
Apr 3 at 9:39
used your solution right now, it works greate. Thanx
– Stanislav Putilov
Apr 2 at 17:00
used your solution right now, it works greate. Thanx
– Stanislav Putilov
Apr 2 at 17:00
(y) happy coding
– Johnykutty
Apr 3 at 9:39
(y) happy coding
– Johnykutty
Apr 3 at 9:39
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.
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%2f55297219%2fconstraints-for-labels-with-changing-size%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
So if I understand You correctly, You would like to set programically Top Constraint for TableView ?
– Sebastianor
Mar 22 at 10:29
@Sebastianor I use Storyboard, better to set constraints in Storyboard
– Stanislav Putilov
Mar 22 at 10:32
So what do you mean to create constrains for TableView? You can create two constrains as You said and set one of them on isActive = false.
– Sebastianor
Mar 22 at 10:40