Skip to content

Commit

Permalink
feature: 화이트보드 오브젝트 뷰 설계(#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
taipaise committed Nov 12, 2024
1 parent f984c38 commit b34e25c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Presentation/Presentation.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
0080E8C62CE2F0510095B958 /* WhiteboardObjectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0080E8C52CE2F04F0095B958 /* WhiteboardObjectView.swift */; };
5B7C6EBA2CDB6C5C0024704A /* Domain.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B7C6EB92CDB6C5C0024704A /* Domain.framework */; };
5B7C6EBB2CDB6C5C0024704A /* Domain.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 5B7C6EB92CDB6C5C0024704A /* Domain.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
A8525DC32CE200230089DA5E /* Colors.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A8525DC22CE200230089DA5E /* Colors.xcassets */; };
Expand All @@ -29,6 +30,7 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
0080E8C52CE2F04F0095B958 /* WhiteboardObjectView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WhiteboardObjectView.swift; sourceTree = "<group>"; };
5B7C6E502CDB6A380024704A /* Presentation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Presentation.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5B7C6EB92CDB6C5C0024704A /* Domain.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Domain.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A8525DC22CE200230089DA5E /* Colors.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Colors.xcassets; sourceTree = "<group>"; };
Expand All @@ -52,6 +54,7 @@
isa = PBXGroup;
children = (
A8525DC52CE201C00089DA5E /* Common */,
0080E8C32CE2F0310095B958 /* Whiteboard */,
);
path = Sources;
sourceTree = "<group>";
Expand All @@ -65,6 +68,22 @@
path = Presentation;
sourceTree = "<group>";
};
0080E8C32CE2F0310095B958 /* Whiteboard */ = {
isa = PBXGroup;
children = (
0080E8C42CE2F0430095B958 /* View */,
);
path = Whiteboard;
sourceTree = "<group>";
};
0080E8C42CE2F0430095B958 /* View */ = {
isa = PBXGroup;
children = (
0080E8C52CE2F04F0095B958 /* WhiteboardObjectView.swift */,
);
path = View;
sourceTree = "<group>";
};
5B7C6E462CDB6A380024704A = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -229,6 +248,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0080E8C62CE2F0510095B958 /* WhiteboardObjectView.swift in Sources */,
A8525DCB2CE203D50089DA5E /* UIView+.swift in Sources */,
A8525DC82CE201D50089DA5E /* AirplainFont.swift in Sources */,
);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// WhiteboardObjectView.swift
// Presentation
//
// Created by 이동현 on 11/12/24.
//
import Domain
import UIKit

class WhiteboardObjectView: UIView {
init(whiteboardObject: WhiteboardObject) {
let frame = CGRect(origin: whiteboardObject.position, size: whiteboardObject.size)
super.init(frame: frame)
}

required init?(coder: NSCoder) {
super.init(coder: coder)
}
}

0 comments on commit b34e25c

Please sign in to comment.