All Projects → iotjin → JhScrollActionSheetView

iotjin / JhScrollActionSheetView

Licence: other
JhScrollActionSheetView - UIcollectionView横向滚动,类似微博新版的详情页分享界面,可设置单排或双排显示,title不设置不显示title,如果想实现发送站内用户的功能,自己可以改一下代码

Programming Languages

objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to JhScrollActionSheetView

React Native Actions Sheet
A Cross Platform(Android & iOS) ActionSheet with a flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.
Stars: ✭ 412 (+3069.23%)
Mutual labels:  action, actionsheet
AlertKit
🚨 SwiftUI alerts (and action sheets) done right
Stars: ✭ 60 (+361.54%)
Mutual labels:  actionsheet, actionsheetview
React Native Text Ticker
React Native Text Ticker/Marquee Component
Stars: ✭ 212 (+1530.77%)
Mutual labels:  scroll
QuickTraceiOSLogger
A real time iOS log trace tool, view iOS log with pc web browser under local area network, which will automatically scroll like xcode. 一个实时的iOS日志跟踪工具,在局域网中使用 PC Web 浏览器查看 iOS 日志,它将像xcode一样自动滚动。
Stars: ✭ 16 (+23.08%)
Mutual labels:  scroll
React Scroll Sync
Synced scroll position across multiple scrollable elements
Stars: ✭ 252 (+1838.46%)
Mutual labels:  scroll
React Native Stretchy
🤸‍♀️A ReactNative scrollable stretchy header component
Stars: ✭ 216 (+1561.54%)
Mutual labels:  scroll
lbaction-npm
NPM (LauchBar 6 Action)
Stars: ✭ 17 (+30.77%)
Mutual labels:  action
Stickyfill
Polyfill for CSS `position: sticky`
Stars: ✭ 2,252 (+17223.08%)
Mutual labels:  scroll
RollingNotice-Swift
滚动公告、广告,支持灵活自定义cell。淘宝、口碑、京东、美团、天猫等等一切滚动广告 Roll Notice or Advertising, customize cell as UITableViewCell supported, Swift version is also ready
Stars: ✭ 109 (+738.46%)
Mutual labels:  scroll
Vue Scroll
Scroll directive on vue
Stars: ✭ 238 (+1730.77%)
Mutual labels:  scroll
ts-action-operators
TypeScript action operators for NgRx and redux-observable
Stars: ✭ 34 (+161.54%)
Mutual labels:  action
Vegascroll
↕️ VegaScroll is a lightweight animation flowlayout for UICollectionView completely written in Swift 4, compatible with iOS 11 and Xcode 9.
Stars: ✭ 2,647 (+20261.54%)
Mutual labels:  scroll
React Native Swiper Flatlist
👆 Swiper component implemented with FlatList using Hooks & Typescript + strict automation tests with Detox
Stars: ✭ 217 (+1569.23%)
Mutual labels:  scroll
setup-sonar-scanner
Github Action which downloads and runs sonar-scanner cli with custom parameters to start Sonarqube scan.
Stars: ✭ 31 (+138.46%)
Mutual labels:  action
V Bar
The virtual responsive crossbrowser scrollbar component for VueJS 2x
Stars: ✭ 216 (+1561.54%)
Mutual labels:  scroll
scrollRulerView
请使用 CYRuler (Please use CYRuler)
Stars: ✭ 31 (+138.46%)
Mutual labels:  scroll
Scroll
Static publishing software with a newspaper feel built on Tree Notation. Scroll is public domain software.
Stars: ✭ 206 (+1484.62%)
Mutual labels:  scroll
React Scroll Shadow
Pure CSS shadow to indicate more content in scrollable area
Stars: ✭ 229 (+1661.54%)
Mutual labels:  scroll
Moveto
A lightweight scroll animation javascript library without any dependency
Stars: ✭ 2,746 (+21023.08%)
Mutual labels:  scroll
setup-lazarus
Set up your GitHub Actions workflow with a specific version of Lazarus
Stars: ✭ 29 (+123.08%)
Mutual labels:  action

JhScrollActionSheetView

JhScrollActionSheetView - UIcollectionView横向滚动,类似微博新版的详情页分享界面
可设置单排或双排显示,title不设置不显示title
如果想实现发送站内用户的功能,自己可以改一下代码




Examples

  • Demo1
//带标题,双排
JhScrollActionSheetView *actionSheet = [[JhScrollActionSheetView alloc]initWithTitle:@"分享到" shareDataArray:self.shareArray otherDataArray:self.otherArray];
actionSheet.clickShareBlock = ^(JhScrollActionSheetView *actionSheet, NSInteger index) {
    NSLog(@" 点击分享 index %ld ",(long)index);
};
actionSheet.clickOtherBlock = ^(JhScrollActionSheetView *actionSheet, NSInteger index) {
    NSLog(@" 点击其他 index %ld ",(long)index);
};

[actionSheet show];
  • Demo2
//带标题,单排
 [JhScrollActionSheetView showShareActionSheetWithTitle:@"分享" shareDataArray:self.shareArray                            handler:^(JhScrollActionSheetView *actionSheet, NSInteger index) {
    NSLog(@" 点击分享 index %ld ",(long)index);                 
}]; 
  • Demo3
//不带标题,单排  
[JhScrollActionSheetView showShareActionSheetWithTitle:@"" shareDataArray:self.shareArray handler:^(JhScrollActionSheetView *actionSheet, NSInteger index) {
    NSLog(@"点击分享 index %ld ",(long)index);
}];
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].