修改了登录im的逻辑

This commit is contained in:
fengshuo
2024-02-29 23:49:12 +08:00
parent 70e6ca8204
commit 26d586290c
26 changed files with 1536 additions and 55 deletions

View File

@@ -0,0 +1,29 @@
//
// ChatKeyboard+.swift
// yinmeng-ios
//
// Created by MaiMang on 2024/2/29.
//
import Foundation
// MARK: - NSNotificationName
public extension NSNotification.Name {
///
static let kChatTextKeyboardNeedHide = Notification.Name("kChatTextKeyboardNeedHide")
///
static let kChatTextKeyboardChanged = Notification.Name("kChatTextKeyboardChanged")
}
protocol OptionalType {
associatedtype Wrapped
var value: Wrapped? { get }
}
extension Optional: OptionalType {
var value: Wrapped? {
return self
}
}