This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
class Dummy { | |
private let name = "Dummy" | |
} | |
final class SomeClass { | |
private let dodoService = DoDoService() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var appName = "AppName"; | |
// 메뉴바 추가 | |
function onOpen() { | |
var sheet = SpreadsheetApp.getActiveSpreadsheet(); | |
var entries = [ | |
{ | |
name : "Create iOS Resources", | |
functionName : "exportiOSResources" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UIView+addHighlightEffect.swift | |
// | |
// | |
// Created by 홍경표 on 2021/11/17. | |
// | |
import UIKit | |
public extension UIView { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// LoadingIndicator.swift | |
// | |
// Created by 홍경표 on 2021/12/28. | |
// | |
import UIKit | |
public class LoadingIndicator { | |
private static weak var currentIndicator: UIActivityIndicatorView? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ActivityTracker.swift | |
// RxActivityTracker | |
// | |
// Created by 홍경표 on 2021/12/30. | |
// | |
// Reference: https://github.com/ReactiveX/RxSwift/blob/main/RxExample/RxExample/Services/ActivityIndicator.swift | |
import Foundation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Notifier.swift | |
// | |
// Created by 홍경표 on 2021/11/29. | |
// | |
import Foundation | |
import UserNotifications |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// PartialPresentationController.swift | |
// PartialViewControllerSample | |
// | |
// Created by 홍경표 on 2021/11/16. | |
// | |
import UIKit | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// PaddingLabel.swift | |
// | |
// Created by 홍경표 on 2021/05/23. | |
// | |
import UIKit | |
// Width가 고정이 아니고 최대 Width가 되었을 때 마지막 글자가 잘릴 수 있음.. | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UIViewController+setToWindowRootVC.swift | |
// UtilityModule | |
// | |
// Created by 홍경표 on 2021/08/30. | |
// | |
import UIKit | |
public extension UIViewController { |
NewerOlder