GithubHelp home page GithubHelp logo

didtodayuikit's Introduction

List of directory

├── DidTodayUIKit
│   ├── Resources
│   │   └── Assets.xcassets
│   │       ├── AccentColor.colorset
│   │       │   └── Contents.json
│   │       ├── AppIcon.appiconset
│   │       │   ├── Contents.json
│   │       │   ├── Icon.png
│   │       │   ├── icon_20pt.png
│   │       │   ├── icon_20pt@2x 1.png
│   │       │   ├── [email protected]
│   │       │   ├── [email protected]
│   │       │   ├── icon_29pt.png
│   │       │   ├── icon_29pt@2x 1.png
│   │       │   ├── [email protected]
│   │       │   ├── [email protected]
│   │       │   ├── icon_40pt.png
│   │       │   ├── icon_40pt@2x 1.png
│   │       │   ├── [email protected]
│   │       │   ├── [email protected]
│   │       │   ├── [email protected]
│   │       │   ├── [email protected]
│   │       │   ├── icon_76pt.png
│   │       │   ├── [email protected]
│   │       │   └── [email protected]
│   │       ├── Contents.json
│   │       ├── CustomBackColor.colorset
│   │       │   └── Contents.json
│   │       ├── app.logo.imageset
│   │       │   ├── Combined Shape Copy.png
│   │       │   ├── Combined Shape [email protected]
│   │       │   ├── Combined Shape [email protected]
│   │       │   └── Contents.json
│   │       ├── custom.background.colorset
│   │       │   └── Contents.json
│   │       ├── custom.green.colorset
│   │       │   └── Contents.json
│   │       └── secondary.custom.background.colorset
│   │           └── Contents.json
│   ├── Sources
│   │   ├── AuthorizationManager.swift
│   │   ├── Entry
│   │   │   ├── AppDelegate.swift
│   │   │   ├── BetaVersionMigration.swift
│   │   │   ├── Coordinator
│   │   │   │   ├── AboutFlowCoordinator.swift
│   │   │   │   ├── CalendarFlowCoordinator.swift
│   │   │   │   ├── Coordinator.swift
│   │   │   │   ├── DoingFlowCoordinator.swift
│   │   │   │   └── MainFlowCoordinator.swift
│   │   │   ├── SceneDIContainer.swift
│   │   │   └── SceneDelegate.swift
│   │   ├── Models
│   │   │   ├── Did.swift
│   │   │   ├── ManagedDidItem+CoreDataClass.swift
│   │   │   ├── ManagedDidItem+CoreDataProperties.swift
│   │   │   └── PreviousVersionModel.swift
│   │   ├── Scenes
│   │   │   ├── About
│   │   │   │   ├── AboutRouter.swift
│   │   │   │   ├── AboutViewController.swift
│   │   │   │   ├── Cells
│   │   │   │   │   └── AboutCell.swift
│   │   │   │   └── ViewModel
│   │   │   │       ├── AboutDid.swift
│   │   │   │       └── AboutViewModel.swift
│   │   │   ├── Calendar
│   │   │   │   ├── Calendar
│   │   │   │   │   ├── DayLabel.swift
│   │   │   │   │   └── MonthLabel.swift
│   │   │   │   ├── CalendarRouter.swift
│   │   │   │   ├── CalendarViewController.swift
│   │   │   │   ├── Cells and Supplementary Views
│   │   │   │   │   ├── DetailDidSupplementaryView.swift
│   │   │   │   │   └── DidTitleCell.swift
│   │   │   │   └── ViewModel
│   │   │   │       ├── CalendarViewModel.swift
│   │   │   │       └── DidsOfDayItemViewModel.swift
│   │   │   ├── CreateDid
│   │   │   │   ├── Base.lproj
│   │   │   │   │   └── CreateDid.storyboard
│   │   │   │   ├── CreateDidAlert.swift
│   │   │   │   ├── CreateDidViewController.swift
│   │   │   │   ├── CreateDidViewModel.swift
│   │   │   │   └── ko.lproj
│   │   │   │       └── CreateDid.strings
│   │   │   ├── Custom
│   │   │   │   ├── BoardLabel.swift
│   │   │   │   ├── NeumorphismButton.swift
│   │   │   │   └── PieView.swift
│   │   │   ├── Detail Day
│   │   │   │   ├── DetailDayViewController.swift
│   │   │   │   └── DetailDayViewModel.swift
│   │   │   ├── Did List Collection
│   │   │   │   ├── Cells and Supplementary Views
│   │   │   │   │   ├── DidCell.swift
│   │   │   │   │   ├── SortingSupplementaryView.swift
│   │   │   │   │   └── TotalDidsCell.swift
│   │   │   │   ├── DidItemsViewModel.swift
│   │   │   │   ├── DidListCollectionViewController.swift
│   │   │   │   └── TotalOfDidsViewModel.swift
│   │   │   ├── Doing
│   │   │   │   ├── Base.lproj
│   │   │   │   │   └── Doing.storyboard
│   │   │   │   ├── CircularLabel.swift
│   │   │   │   ├── DayIsChangedNotification.swift
│   │   │   │   ├── DoingRouter.swift
│   │   │   │   ├── DoingViewController.swift
│   │   │   │   ├── DoingViewModel.swift
│   │   │   │   ├── TimerAlert.swift
│   │   │   │   └── ko.lproj
│   │   │   │       └── Doing.strings
│   │   │   ├── Main
│   │   │   │   ├── Base.lproj
│   │   │   │   ├── MainAlert.swift
│   │   │   │   ├── MainRouter.swift
│   │   │   │   ├── MainViewController.swift
│   │   │   │   ├── ViewModel
│   │   │   │   │   └── MainViewModel.swift
│   │   │   │   └── ko.lproj
│   │   │   ├── ParentUIViewController.swift
│   │   │   └── PrivacyPolicy
│   │   │       ├── PrivacyPolicyViewController.swift
│   │   │       └── PrivacyPolicyViewModel.swift
│   │   ├── Services
│   │   │   └── CoreData
│   │   │       └── DidCoreDataStorage.swift
│   │   ├── UserNotificationManager.swift
│   │   └── Utils
│   │       ├── Extensions
│   │       │   ├── Date+Extensions
│   │       │   │   ├── Date+DifferenceToString.swift
│   │       │   │   ├── Date+GetHoursAndMinutes.swift
│   │       │   │   ├── Date+OmittedTime.swift
│   │       │   │   ├── Date+ToDouble.swift
│   │       │   │   └── Date+ToString.swift
│   │       │   ├── Double+ToStringOfTimer.swift
│   │       │   ├── TimeInterval+Times.swift
│   │       │   ├── UIColor+Extensions
│   │       │   │   ├── UIColor+Custom.swift
│   │       │   │   ├── UIColor+GetRGB.swift
│   │       │   │   ├── UIColor+GradientEffect.swift
│   │       │   │   └── UIColor+IsDark.swift
│   │       │   └── UIView+Extensions
│   │       │       ├── UIView+Animate To Hide.swift
│   │       │       ├── UIView+Border.swift
│   │       │       ├── UIView+Corner Radius.swift
│   │       │       ├── UIView+Shadow Effect.swift
│   │       │       └── UIView+animateToShake.swift
│   │       ├── Localize.swift
│   │       ├── Namespaces
│   │       │   ├── CustomText.swift
│   │       │   └── StoryboardName.swift
│   │       └── StoryboardInstantiable.swift
│   └── Supportings
│       ├── Base.lproj
│       │   └── LaunchScreen.storyboard
│       ├── DataModel.xcdatamodeld
│       │   └── DataModel.xcdatamodel
│       │       └── contents
│       ├── Info.plist
│       ├── en.lproj
│       │   └── Localizable.strings
│       └── ko.lproj
│           ├── LaunchScreen.strings
│           └── Localizable.strings
├── DidTodayUIKit.xcodeproj
│   ├── project.pbxproj
│   ├── project.xcworkspace
│   │   ├── contents.xcworkspacedata
│   │   ├── xcshareddata
│   │   │   ├── IDEWorkspaceChecks.plist
│   │   │   └── swiftpm
│   │   │       ├── Package.resolved
│   │   │       └── configuration
│   │   └── xcuserdata
│   │       └── doyoung.xcuserdatad
│   │           ├── IDEFindNavigatorScopes.plist
│   │           └── UserInterfaceState.xcuserstate
│   ├── xcshareddata
│   │   └── xcschemes
│   │       ├── DidTodayUIKit-he.xcscheme
│   │       ├── DidTodayUIKit-ko.xcscheme
│   │       └── DidTodayUIKit.xcscheme
│   └── xcuserdata
│       └── doyoung.xcuserdatad
│           ├── xcdebugger
│           │   └── Breakpoints_v2.xcbkptlist
│           └── xcschemes
│               └── xcschememanagement.plist
├── DidTodayUIKitTests
│   ├── AboutViewModelTests.swift
│   ├── BetaVersionMigrationTests.swift
│   ├── CalendarViewModelTests.swift
│   ├── CreateDid
│   │   ├── CreateDidViewControllerTests.swift
│   │   └── CreateDidViewModelTests.swift
│   ├── DetailDay
│   │   └── DetaiDaylViewModelTests.swift
│   ├── DidCoreDataStorageTests.swift
│   ├── Doing
│   │   └── DoingViewModelTests.swift
│   ├── Main
│   │   ├── MainViewControllerTests.swift
│   │   └── MainViewModelTests.swift
│   └── Seeds.swift
└── README.md

didtodayuikit's People

Contributors

idoyoung avatar

Watchers

 avatar

didtodayuikit's Issues

PrivacyPolicyViewController, WebView Issue: (Security) This method should not be called on the main thread as it may lead to UI unresponsiveness.

This issue appear when load web view

2023-02-06 12:54:05.175294+0900 DidTodayUIKit[9154:1372762] [assertion] Error acquiring assertion: <Error Domain=RBSAssertionErrorDomain Code=2 "Specified target process does not exist" UserInfo={NSLocalizedFailureReason=Specified target process does not exist}>

2023-02-06 12:54:05.175329+0900 DidTodayUIKit[9154:1372762] [ProcessSuspension] 0x12701c120 - ProcessAssertion::acquireSync Failed to acquire RBS assertion 'WebProcess Background Assertion' for process with PID=9156, error: Error Domain=RBSAssertionErrorDomain Code=2 "Specified target process does not exist" UserInfo={NSLocalizedFailureReason=Specified target process does not exist}

2023-02-06 12:54:05.175436+0900 DidTodayUIKit[9154:1372447] [ProcessSuspension] ProcessAssertion::remainingRunTimeInSeconds failed to get handle for process with PID=9156

2023-02-06 12:54:05.177998+0900 DidTodayUIKit[9154:1372762] [assertion] Error acquiring assertion: <Error Domain=RBSAssertionErrorDomain Code=2 "Specified target process does not exist" UserInfo={NSLocalizedFailureReason=Specified target process does not exist}>

2023-02-06 12:54:05.178026+0900 DidTodayUIKit[9154:1372762] [ProcessSuspension] 0x12701c240 - ProcessAssertion::acquireSync Failed to acquire RBS assertion 'ConnectionTerminationWatchdog' for process with PID=9156, error: Error Domain=RBSAssertionErrorDomain Code=2 "Specified target process does not exist" UserInfo={NSLocalizedFailureReason=Specified target process does not exist}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.