The Notes for Professionals book is compiled from Stack Overflow Documentation, the content is written by the beautiful people at Stack Overflow. Text content is released under Creative Commons BY-SA. See credits at the end of this book whom contributed to the various chapters. Images may be copyright of their respective owners unless otherwise specified
Book created for educational purposes and is not affiliated with group(s), company(s) nor Stack Overflow. All trademarks belong to their respective company owners
https://goalkicker.com/
章节目录
1-1
Content list
1-2
About
1-3
Chapter 1: Getting started with iOS Development
1-4
Section 1.1: Creating a default Single View Application
1-5
Section 1.2: Hello World
1-6
Section 1.3: Xcode Interface
1-7
Section 1.4: Create your first program in Swift 3
1-8
Chapter 2: UILabel
1-9
Section 2.1: Create a UILabel
1-10
Section 2.2: Number of Lines
1-11
Section 2.3: Set Font
1-12
Section 2.4: Text Color
1-13
Section 2.5: Background Color
1-14
Section 2.6: Size to fit
1-15
Section 2.7: Text alignment
1-16
Section 2.8: Calculate Content Bounds (for i.e. dynamic cell heights)
1-17
Section 2.9: Label Attributed Text
1-18
Section 2.10: Clickable Label
1-19
Section 2.11: Variable height using constraints
1-20
Section 2.12: LineBreakMode
1-21
Section 2.13: Add shadows to text
1-22
Section 2.14: Changing Text in an Existing Label
1-23
Section 2.15: Auto-size label to fit text
1-24
Section 2.16: Get UILabel's size strictly based on its text and font
1-25
Section 2.17: Highlighted and Highlighted Text Color
1-26
Section 2.18: Justify Text
1-27
Section 2.19: Dynamic label frame from unknown text length
1-28
Chapter 3: UILabel text underlining
1-29
Section 3.1: Underlining a text in a UILabel using Objective C
1-30
Section 3.2: Underlining a text in UILabel using Swift
1-31
Chapter 4: attributedText in UILabel
1-32
Section 4.1: HTML text in UILabel
1-33
Section 4.2: Set dierent property to text in single UILabel
1-34
Chapter 5: UIButton
1-35
Section 5.1: Creating a UIButton
1-36
Section 5.2: Attaching a Method to a Button
1-37
Section 5.3: Setting Font
1-38
Section 5.4: Set Image
1-39
Section 5.5: Get UIButton's size strictly based on its text and font
1-40
Section 5.6: Disabling a UIButton
1-41
Section 5.7: Set title
1-42
Section 5.8: Set title color
1-43
Section 5.9: Horizontally aligning contents
1-44
Section 5.10: Getting the title label
1-45
Section 5.11: Adding an action to an UIButton via Code (programmatically)
1-46
Chapter 6: UIDatePicker
1-47
Section 6.1: Create a Date Picker
1-48
Section 6.2: Setting Minimum-Maximum Date
1-49
Section 6.3: Modes
1-50
Section 6.4: Setting minute interval
1-51
Section 6.5: Count Down Duration
1-52
Chapter 7: UILocalNotification
1-53
Section 7.1: Scheduling a local notification
1-54
Section 7.2: Presenting a local notification immediately
1-55
Section 7.3: Managing local notifications using UUID
1-56
Section 7.4: Registering for local notifications
1-57
Section 7.5: what's new in UILocalNotification with iOS10
1-58
Section 7.6: Responding to received local notification
1-59
Section 7.7: Register and Schedule Local Notification in Swift 3.0 (iOS 10)