How can I horizontally center a UIView?

Mohammad Nurdin

How can I make UIView horizontally centered and 30px from the top of the view controller using CGRectMake?

var draggableView: DraggableView = DraggableView(frame:CGRectMake(0 , 30, 260, 260))
draggableView.center = center
nanothread

Try:

let size = 260
let screenWidth = self.view.frame.size.width

let frame = CGRectMake((screenWidth / 2) - (size / 2), 30, size, size)
let draggableView = DraggableView(frame: frame)

self.view.addSubview(draggableView)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I horizontally center a single line of text in UITextView?

From Dev

How Can I Put Bootstrap Modal in Horizontally center?

From Dev

JavaFX: How can I horizontally center an ImageView inside a ScrollPane?

From Dev

How can I horizontally and vertically center this four divs contents?

From Dev

How can I center horizontally a Grid-block inside of a div?

From Dev

How can i vertically and horizontally center an asp button in bootstrap

From Dev

How to center any subview horizontally in parent UIView but not vertically?

From Dev

How do I horizontally center this in Android (RelativeLayout)?

From Dev

How do I center UILabel TEXT horizontally?

From Dev

how i center div elements horizontally in css?

From Dev

Horizontally Center UILabel + UIImageView inside UIView with Autolayout

From Java

How to horizontally center a <div>

From Dev

How to horizontally center an element

From Java

How do I center text vertically and horizontally in Flutter?

From Java

How do I center text horizontally and vertically in a TextView?

From Dev

How do I center Glyphicons horizontally using Twitter Bootstrap

From Dev

How do I vertically and horizontally center all these elements?

From Dev

Android:How do I center TextView horizontally in LinearLayout Programatically

From Dev

How should i center horizontally a div without width?

From Dev

How do I horizontally center my Nav menu in CSS?

From Dev

How do I horizontally center a UISwitch in a stack view?

From Dev

Can't center content horizontally

From Dev

How can i round a UIView

From Dev

How can I subclass UIView?

From Dev

How can I make a div scroll horizontally

From Dev

How can I horizontally align these divs in these boxes?

From Dev

How can i horizontally stack these thumbnails?

From Dev

How can i control qscrollarea horizontally

From Dev

How can i center this menu?

Related Related

  1. 1

    How can I horizontally center a single line of text in UITextView?

  2. 2

    How Can I Put Bootstrap Modal in Horizontally center?

  3. 3

    JavaFX: How can I horizontally center an ImageView inside a ScrollPane?

  4. 4

    How can I horizontally and vertically center this four divs contents?

  5. 5

    How can I center horizontally a Grid-block inside of a div?

  6. 6

    How can i vertically and horizontally center an asp button in bootstrap

  7. 7

    How to center any subview horizontally in parent UIView but not vertically?

  8. 8

    How do I horizontally center this in Android (RelativeLayout)?

  9. 9

    How do I center UILabel TEXT horizontally?

  10. 10

    how i center div elements horizontally in css?

  11. 11

    Horizontally Center UILabel + UIImageView inside UIView with Autolayout

  12. 12

    How to horizontally center a <div>

  13. 13

    How to horizontally center an element

  14. 14

    How do I center text vertically and horizontally in Flutter?

  15. 15

    How do I center text horizontally and vertically in a TextView?

  16. 16

    How do I center Glyphicons horizontally using Twitter Bootstrap

  17. 17

    How do I vertically and horizontally center all these elements?

  18. 18

    Android:How do I center TextView horizontally in LinearLayout Programatically

  19. 19

    How should i center horizontally a div without width?

  20. 20

    How do I horizontally center my Nav menu in CSS?

  21. 21

    How do I horizontally center a UISwitch in a stack view?

  22. 22

    Can't center content horizontally

  23. 23

    How can i round a UIView

  24. 24

    How can I subclass UIView?

  25. 25

    How can I make a div scroll horizontally

  26. 26

    How can I horizontally align these divs in these boxes?

  27. 27

    How can i horizontally stack these thumbnails?

  28. 28

    How can i control qscrollarea horizontally

  29. 29

    How can i center this menu?

HotTag

Archive