Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto...

12
Mobile Application Programming Structured Layout

Transcript of Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto...

Page 1: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Mobile Application ProgrammingStructured Layout

Page 2: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Container View

Content View

Legend

View Property

ReferenceDelegate

View Controller

Window

Root View

Collection ViewHeader View Footer View

TitleAdd Button TitleItemItem Item Refresh

Content Label Detail LabelIcon

TextImage Text

View Controller

Primary Concern: Layout

Primary Concern: Content

Containers & Content

Page 3: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Manual Layout - Rect Divide

1

2

3

override func layoutSubviews() { var r: CGRect = bounds

(_wheelView.frame, r) = r.divided(atDistance: r.height * 0.7, from: CGRectEdge.MinYEdge) (_brightnessView.frame, r) = r.divided(atDistance: r.height * 0.333, from: CGRectEdge.MinYEdge) (_opacityView.frame, _compareView.frame) = r.divided(atDistance: r.height * 0.5, from: CGRectEdge.MinYEdge)

}

Page 4: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Android

http://developer.android.com/guide/topics/ui/declaring-layout.html

Measure Pass and Arrange PassUse provided layouts or define custom ones

Page 5: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

iOS Structured Layout

Page 6: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Container View

Content View

Legend

View Property

ReferenceDelegate

View Controller

Window

Root View

Collection ViewHeader View Footer View

TitleAdd Button TitleItemItem Item Refresh

Content Label Detail LabelIcon

TextImage Text

View Controller

Implementation

Page 7: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Container View

Content View

Legend

View Property

ReferenceDelegate

View Controller

Window

Root View

Collection ViewHeader View Footer View

TitleAdd Button TitleItemItem Item Refresh

Content Label Detail LabelIcon

TextImage Text

View Controller

Implementation

UIStackView

Page 8: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Container View

Content View

Legend

View Property

ReferenceDelegate

View Controller

Window

Root View

Collection ViewHeader View Footer View

TitleAdd Button TitleItemItem Item Refresh

Content Label Detail LabelIcon

TextImage Text

View Controller

Implementation

UIStackView

Auto Layout

Page 9: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Container View

Content View

Legend

View Property

ReferenceDelegate

View Controller

Window

Root View

Collection ViewHeader View Footer View

TitleAdd Button TitleItemItem Item Refresh

Content Label Detail LabelIcon

TextImage Text

View Controller

Implementation

UIStackView

ManualAuto Layout

Page 10: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Container View

Content View

Legend

View Property

ReferenceDelegate

View Controller

Window

Root View

Collection ViewHeader View Footer View

TitleAdd Button TitleItemItem Item Refresh

Content Label Detail LabelIcon

TextImage Text

View Controller

Implementation

UIStackView

UICollectionView ManualAuto Layout

Page 11: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

Container View

Content View

Legend

View Property

ReferenceDelegate

View Controller

Window

Root View

Collection ViewHeader View Footer View

TitleAdd Button TitleItemItem Item Refresh

Content Label Detail LabelIcon

TextImage Text

View Controller

Implementation

UIStackView

UICollectionView ManualAuto Layout

Auto Layout

Page 12: Mobile Application Programmingcs4530/media/Lecture 8 - Structured Layout.pdf · UIStackView Auto Layout UICollectionView Manual. Container View Content View Legend View Property Reference

View Hierarchy Debug Tool