All Projects → XZTLLQ → LQIMInputView

XZTLLQ / LQIMInputView

Licence: other
一个聊天输入框的工具栏,类似微信聊天工具栏,可自定义,集成方便

Programming Languages

objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to LQIMInputView

Im android
GoBelieveIO IM android sdk
Stars: ✭ 167 (+496.43%)
Mutual labels:  im
Bitlbee Discord
Bitlbee plugin for Discord (http://discordapp.com)
Stars: ✭ 204 (+628.57%)
Mutual labels:  im
MMAdvertScrollView
一个简单、轻量级的swift版公告轮播框架
Stars: ✭ 42 (+50%)
Mutual labels:  collectionview
Tablestore Timeline
TableStore-Timeline Model for Social scene
Stars: ✭ 192 (+585.71%)
Mutual labels:  im
React Native Netease Im
网易云信React Native组件
Stars: ✭ 204 (+628.57%)
Mutual labels:  im
Exchat
(Not maintaining) A Slack-like app by Elixir, Phoenix & React(redux)
Stars: ✭ 252 (+800%)
Mutual labels:  im
Gff
GFF is a imitation QQ communication project, based on high IOCP. GFF是模仿QQ通讯项目,通信基于SAEA.MessageSocket、SAEA.Http、SAEA.MVC实现
Stars: ✭ 162 (+478.57%)
Mutual labels:  im
Open-IM-SDK-Flutter
即时通讯IM Flutter
Stars: ✭ 285 (+917.86%)
Mutual labels:  im
Viber Bot Php
Php bot interface to work with Viber API
Stars: ✭ 202 (+621.43%)
Mutual labels:  im
MineRender
Quick, Easy, Interactive 3D/2D Renders of Minecraft
Stars: ✭ 76 (+171.43%)
Mutual labels:  item
Js Realtime Sdk
LeanCloud Realtime Message JavaScript SDK
Stars: ✭ 193 (+589.29%)
Mutual labels:  im
Srain
Modern IRC client written in GTK
Stars: ✭ 197 (+603.57%)
Mutual labels:  im
CSGOItemDB
An API to retrieve accurate CS:GO prices for high- and low-tier items
Stars: ✭ 35 (+25%)
Mutual labels:  item
Universe push
[飞享]-基于t-io的即时通讯系统,采用服务化框架Dubbo实现应用服务化,使用SpringBoot构建应用,可做信令服务器使用,支持docker,k8s快速部署。Android版本支持私聊,群聊,支持voip通话,支持语音,短视频,图片,位置发送。web客户端基于vue框架,基于websocket协议,基于json的自定义文本协议实现消息解析,支持与android客户端实现消息互通。实现一端发布,多端同步消息,支持android端与web端音视频通话。[公测地址](https://chat.comsince.cn)
Stars: ✭ 189 (+575%)
Mutual labels:  im
MGGridView
MGGridView is a grid view created by a combination of collection views.
Stars: ✭ 25 (-10.71%)
Mutual labels:  collectionview
Im App server
Demo of IM application server
Stars: ✭ 165 (+489.29%)
Mutual labels:  im
Jelly
一款IM服务器端程序,基于Netty4.x开发,并且提供了客户端API。
Stars: ✭ 214 (+664.29%)
Mutual labels:  im
SwiftWaterfallFlow
swift写的瀑布流布局
Stars: ✭ 37 (+32.14%)
Mutual labels:  collectionview
go-chat
go-chat.使用Go基于WebSocket开发的web聊天应用。单聊,群聊。文字,图片,语音,视频消息,屏幕共享,剪切板图片,基于WebRTC的P2P语音通话,视频聊天。
Stars: ✭ 516 (+1742.86%)
Mutual labels:  im
repeat-element
Create an array by repeating the given string n times.
Stars: ✭ 19 (-32.14%)
Mutual labels:  item

LQ系列--UI

LQPhotoPickerDemo - https://github.com/XZTLLQ/LQClass (可节约项目大量细节调控时间,体验好!)

LQPhotoPickerDemo - https://github.com/XZTLLQ/LQPhotoPickerDemo (选择图片上传)

LQIMInputView - https://github.com/XZTLLQ/LQIMInputView (聊天页面工具栏)

LQIMInputView

效果图

如图功能,集成方便

使用方法:

1.“LQIMInputView”目录文件即为集成所需文件:

InputItem  .h&.m
InputItemModel  .h&.m
LQCollectionViewHorizontalLayout  .h&.m
LQIMInputVie  .h&.m

2.使用方法:

//第一步
self.inputView = [[LQIMInputView alloc] initWithFrame:CGRectMake(0, [UIScreen mainScreen].bounds.size.height-210, [UIScreen mainScreen].bounds.size.width, 210)];
//第二步
    self.inputView.backgroundColor = [UIColor colorWithRed:248.0/255.0 green:248.0/255.0 blue:248.0/255.0 alpha:1.0];
//第三步
    [self.inputView addItem:[InputItemModel initWithTitle:@"相册" imageName:@"tupian" clickedBlock:^{
        NSLog(@"相册");
    }]];
    [self.inputView addItem:[InputItemModel initWithTitle:@"拍照" imageName:@"zhaoxian" clickedBlock:^{
        NSLog(@"拍照");
    }]];
    [self.inputView addItem:[InputItemModel initWithTitle:@"加价" imageName:@"jiajia" clickedBlock:^{
        NSLog(@"加价");
    }]];
    [self.inputView addItem:[InputItemModel initWithTitle:@"确认完成" imageName:@"queren" clickedBlock:^{
        NSLog(@"确认完成");
    }]];
    [self.inputView addItem:[InputItemModel initWithTitle:@"联系客服" imageName:@"kefu" clickedBlock:^{
        NSLog(@"联系客服");
    }]];
    [self.inputView addItem:[InputItemModel initWithTitle:@"电话联系" imageName:@"dianhau" clickedBlock:^{
        NSLog(@"电话联系");
    }]];
//第四步
    [self.view addSubview:self.inputView];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].