CooperRS / RMStepsController

This is an iOS control for guiding users through a process step-by-step
MIT License
1.04k stars 119 forks source link

Update RMStepsController.m #10

Closed Nihilisttt closed 10 years ago

Nihilisttt commented 10 years ago

stepviewcontainer is not well positioned under the stepsbar. Changes with the constraint is fixing it.

CooperRS commented 10 years ago

Did you try to do the following?

viewController.extendedLayoutIncludesOpaqueBars = NO;
viewController.edgesForExtendedLayout = UIRectEdgeNone;

Your fix seems to position the container below the step bar. This is unwanted if you want to extend the content below the steps bar. The above two steps tell the RMStepsController that the step view controller does not want to be extended below the step bar and thus may solve your problem.

Nihilisttt commented 10 years ago

actually it is not my problem but it is not well positioned when stepcontainer is under stepbar. may be I'm wrong.

thanks,