Skip to content
/ PlayiOS Public

๐Ÿ“ฑ iOS ๋†€์ด ๊ณต๊ฐ„

Notifications You must be signed in to change notification settings

zdodev/PlayiOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

PlayiOS

iOS ๋†€์ด๊ณต๊ฐ„์ž…๋‹ˆ๋‹ค.

local account

UIView์— ํ…Œ๋‘๋ฆฌ ์ถ”๊ฐ€ํ•˜๊ธฐ

extension CALayer {
    func addBorder(_ edges: [UIRectEdge], color: UIColor, width: CGFloat) {
        for edge in edges {
            let border = CALayer()
            switch edge {
            case .top:
                addBorderEdge(border, x: 0, y: 0, width: frame.width, height: width)
            case .bottom:
                addBorderEdge(border, x: 0, y: frame.height - width, width: frame.width, height: width)
            case .left:
                addBorderEdge(border, x: 0, y: 0, width: width, height: frame.height)
            case .right:
                addBorderEdge(border, x: frame.width - width, y: 0, width: width, height: frame.height)
            default:
                break
            }
        }
        
        func addBorderEdge(_ border: CALayer, x: CGFloat, y: CGFloat, width: CGFloat, height: CGFloat) {
            border.frame = CGRect(x: x, y: y, width: width, height: height)
            border.backgroundColor = color.cgColor
            addSublayer(border)
        }
    }
}

App Link

  • ์™ธ๋ถ€์—์„œ ๋งํฌ๋ฅผ ํ†ตํ•ด ์•ฑ์„ ์‹คํ–‰ํ•ฉ๋‹ˆ๋‹ค.

File System

  • iOS ํŒŒ์ผ ์‹œ์Šคํ…œ์— ๋Œ€ํ•œ ๊ธฐ๋ก์ž…๋‹ˆ๋‹ค.

์Šคํƒ ๋ทฐ

  • ์Šคํƒ ๋ทฐ ์ƒ์„ฑ ๋ฐ ์„ค์ •

iOS ๋ผ์ดํ”„์‚ฌ์ดํด

  • ์•ฑ ๋ผ์ดํ”„์‚ฌ์ดํด
  • ๋ทฐ ์ปจํŠธ๋กค๋Ÿฌ ๋ผ์ดํ”„์‚ฌ์ดํด

Core Location์„ ํ™œ์š”ํ•œ ์œ„์น˜ ๊ตฌํ•˜๊ธฐ

  • Core Location์„ ํ™œ์šฉํ•˜์—ฌ ์œ„์น˜ ์ •๋ณด ๊ตฌํ•˜๊ธฐ

Table View๋ฅผ ํ™œ์šฉํ•œ ํ™”๋ฉด ๊ตฌํ˜„

  • ํ…Œ์ด๋ธ” ๋ทฐ, ์ปค์Šคํ…€ ์…€, ๋ฐ์ดํ„ฐ ์†Œ์Šค๋ฅผ ํ™œ์šฉ

SocketNetworking

  • ์†Œ์ผ“์„ ์‚ฌ์šฉํ•œ ๋„คํŠธ์›Œํฌ ํ†ต์‹ ์„ ๊ตฌํ˜„ํ•ฉ๋‹ˆ๋‹ค.
  • ๋กœ์ปฌ ์„œ๋ฒ„๋ฅผ ์ด์šฉํ•ฉ๋‹ˆ๋‹ค.

Pass Data

  • ๊ฐ์ฒด(๋ทฐ ์ปจํŠธ๋กค๋Ÿฌ) ๊ฐ„์— ๋ฐ์ดํ„ฐ๋ฅผ ์ „๋‹ฌํ•˜๋Š” ๋ฐฉ๋ฒ•์„ ๊ตฌํ˜„ ์ •๋ฆฌํ•ด๋ณด์•˜์Šต๋‹ˆ๋‹ค.

ArchitecturePattern

  • iOS ์•„ํ‚คํ…์ฒ˜ ํŒจํ„ด์— ๋Œ€ํ•ด ์ •๋ฆฌํ•ด๋ณด์•˜์Šต๋‹ˆ๋‹ค.
  • MVC ํŒจํ„ด ๊ฐœ๋… ์ •๋ฆฌ

Collection View

  • Collection View ์‚ฌ์šฉํ•ด๋ณด๊ธฐ.
  • Carousel Effect!!!

Drag and Drop

  • Drag and drop ์‚ฌ์šฉํ•ด๋ณด๊ธฐ.

Auto Layout

  • ์ฝ”๋“œ๋กœ auto layout ๊ตฌํ˜„ํ•˜๊ธฐ(auto layout programmatically)
  • ๋‹ค์–‘ํ•œ ๋ทฐ ๋ ˆ์ด์•„์›ƒ

User Notifications

  • User Notifications ์ •๋ฆฌ

Delegate Pattern

  • Protocol, Delegate, Implement ๊ตฌํ˜„

UISplitViewController

  • ๊ณ„์ธต์  ์ธํ„ฐํŽ˜์ด์Šค๋ฅผ ๊ตฌํ˜„ํ•˜๋Š” ๋ทฐ ์ปจํŠธ๋กค๋Ÿฌ

Carousel

About

๐Ÿ“ฑ iOS ๋†€์ด ๊ณต๊ฐ„

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages