messenger iOS chat swift firestore
1.0.0
이것은 iOS Swift 채팅 앱의 매우 간단한 채팅 앱 소스 코드입니다. 그것은 MessageKit을 활용하고 IT를 저장하고 Firebase Firestore로 가져 오는 데이터를 검색합니다. 앱 디자인은 Facebook 메신저에서 영감을 받았습니다. iOS 채팅 앱 소스 코드를 복제하고 몇 분 안에 앱에 완전히 깃발 채팅을 추가하십시오.
몇 줄의 코드만으로 고유 한 iOS 채팅 기능을 구축하는 방법에 대해 알아보십시오. 이 iOS 채팅 앱 소스 코드를 복제하고 아래 단계를 수행하여 시작하십시오. 자세한 내용은 공식 iOS Swift Chat 앱 페이지에서 자세한 기술 문서를 확인하십시오.
최신 Xcode에서 빌드 오류가 발생하면 Xcode의 레거시 빌드 시스템 (파일 -> 작업 공간 설정)을 실행하십시오.
pod update
pod update
let uiConfig = ATCChatUIConfiguration ( primaryColor : UIColor ( hexString : " #0084ff " ) ,
secondaryColor : UIColor ( hexString : " #f0f0f0 " ) ,
inputTextViewBgColor : UIColor ( hexString : " #f4f4f6 " ) ,
inputTextViewTextColor : . black ,
inputPlaceholderTextColor : UIColor ( hexString : " #979797 " ) )
let channel = ATCChatChannel ( id : " channel_id " , name : " Chat Title " )
let viewer = ATCUser ( firstName : " Florian " , lastName : " Marcu " )
let chatVC = ATCChatThreadViewController ( user : viewer , channel : channel , uiConfig : uiConfig )
// Present the chatVC view controller let mainThemeBackgroundColor : UIColor = . white
let mainThemeForegroundColor : UIColor = UIColor ( hexString : " #3068CC " )
let mainTextColor : UIColor = UIColor ( hexString : " #000000 " )
let mainSubtextColor : UIColor = UIColor ( hexString : " #7e7e7e " )
let statusBarStyle : UIStatusBarStyle = . default
let hairlineColor : UIColor = UIColor ( hexString : " #d6d6d6 " )
let regularSmallFont = UIFont . systemFont ( ofSize : 14 )
let regularMediumFont = UIFont . systemFont ( ofSize : 17 )
let regularLargeFont = UIFont . systemFont ( ofSize : 23 )
let mediumBoldFont = UIFont . boldSystemFont ( ofSize : 17 )
let boldLargeFont = UIFont . boldSystemFont ( ofSize : 23 )
let boldSmallFont = UIFont . boldSystemFont ( ofSize : 14 )
let boldSuperSmallFont = UIFont . boldSystemFont ( ofSize : 11 )
let boldSuperLargeFont = UIFont . boldSystemFont ( ofSize : 29 )
let italicMediumFont = UIFont . italicSystemFont ( ofSize : 17 )사랑으로 코딩하고 iOS 앱 템플릿에서 지원합니다.
이 프로젝트는 React 기본 템플릿을 사용하여 만들어졌습니다.