├── .gitignore ├── .travis.yml ├── ActionCell.podspec ├── ActionCell.xcworkspace └── contents.xcworkspacedata ├── Example ├── ActionCell-Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneApp_60pt@2x.png │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneApp_60pt@3x.png │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneNotification_20pt@2x.png │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneNotification_20pt@3x.png │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight5_29pt@2x.png │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight5_29pt@3x.png │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight7_40pt@2x.png │ │ │ ├── 1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight7_40pt@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── image_0.imageset │ │ │ ├── 1471670751_add_cross_new_plus_create.png │ │ │ ├── 1471670751_add_cross_new_plus_create@2x.png │ │ │ ├── 1471670751_add_cross_new_plus_create@3x.png │ │ │ └── Contents.json │ │ ├── image_1.imageset │ │ │ ├── 1471670754_alarm_alert_clock_event_history_schedule_time_watch.png │ │ │ ├── 1471670754_alarm_alert_clock_event_history_schedule_time_watch@2x.png │ │ │ ├── 1471670754_alarm_alert_clock_event_history_schedule_time_watch@3x.png │ │ │ └── Contents.json │ │ ├── image_2.imageset │ │ │ ├── 1471670759_bubble_chat_comment_message_outline_talk.png │ │ │ ├── 1471670759_bubble_chat_comment_message_outline_talk@2x.png │ │ │ ├── 1471670759_bubble_chat_comment_message_outline_talk@3x.png │ │ │ └── Contents.json │ │ ├── image_3.imageset │ │ │ ├── 1471670761_email_envelope_letter_mail.png │ │ │ ├── 1471670761_email_envelope_letter_mail@2x.png │ │ │ ├── 1471670761_email_envelope_letter_mail@3x.png │ │ │ └── Contents.json │ │ ├── image_4.imageset │ │ │ ├── 1471670764_edit_editor_pen_pencil_write.png │ │ │ ├── 1471670764_edit_editor_pen_pencil_write@2x.png │ │ │ ├── 1471670764_edit_editor_pen_pencil_write@3x.png │ │ │ └── Contents.json │ │ ├── image_5.imageset │ │ │ ├── 1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule.png │ │ │ ├── 1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule@2x.png │ │ │ ├── 1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule@3x.png │ │ │ └── Contents.json │ │ ├── image_6.imageset │ │ │ ├── 1471670777_account_friend_human_man_member_person_profile_user_users.png │ │ │ ├── 1471670777_account_friend_human_man_member_person_profile_user_users@2x.png │ │ │ ├── 1471670777_account_friend_human_man_member_person_profile_user_users@3x.png │ │ │ └── Contents.json │ │ ├── image_7.imageset │ │ │ ├── 1471670780_Download_save_down.png │ │ │ ├── 1471670780_Download_save_down@2x.png │ │ │ ├── 1471670780_Download_save_down@3x.png │ │ │ └── Contents.json │ │ └── image_8.imageset │ │ │ ├── 1471670949_flag_notice_warning.png │ │ │ ├── 1471670949_flag_notice_warning@2x.png │ │ │ ├── 1471670949_flag_notice_warning@3x.png │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── ActionCell-ExampleTests │ ├── ActionCell_ExampleTests.swift │ └── Info.plist └── ActionCell-ExampleUITests │ ├── ActionCell_ExampleUITests.swift │ └── Info.plist ├── LICENSE ├── README.md ├── ScreenShot └── ActionCell.gif ├── example └── ActionCell-Example.xcodeproj │ └── project.pbxproj └── framework ├── ActionCell.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ActionCell ├── ActionCell-Develop.plist ├── ActionCell.h ├── ActionCell.plist ├── ActionCell.swift ├── ActionControl.swift └── UITableViewCell+Extension.swift └── ActionCellTests ├── ActionCellTests.swift └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/.travis.yml -------------------------------------------------------------------------------- /ActionCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/ActionCell.podspec -------------------------------------------------------------------------------- /ActionCell.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/ActionCell.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ActionCell-Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneApp_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneApp_60pt@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneApp_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneApp_60pt@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneNotification_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneNotification_20pt@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneNotification_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneNotification_20pt@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight5_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight5_29pt@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight5_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight5_29pt@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight7_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight7_40pt@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight7_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/1473602834_GanttiPhoneApp_60pt@3xiPhoneSpootlight7_40pt@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_0.imageset/1471670751_add_cross_new_plus_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_0.imageset/1471670751_add_cross_new_plus_create.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_0.imageset/1471670751_add_cross_new_plus_create@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_0.imageset/1471670751_add_cross_new_plus_create@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_0.imageset/1471670751_add_cross_new_plus_create@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_0.imageset/1471670751_add_cross_new_plus_create@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_0.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_1.imageset/1471670754_alarm_alert_clock_event_history_schedule_time_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_1.imageset/1471670754_alarm_alert_clock_event_history_schedule_time_watch.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_1.imageset/1471670754_alarm_alert_clock_event_history_schedule_time_watch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_1.imageset/1471670754_alarm_alert_clock_event_history_schedule_time_watch@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_1.imageset/1471670754_alarm_alert_clock_event_history_schedule_time_watch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_1.imageset/1471670754_alarm_alert_clock_event_history_schedule_time_watch@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_2.imageset/1471670759_bubble_chat_comment_message_outline_talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_2.imageset/1471670759_bubble_chat_comment_message_outline_talk.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_2.imageset/1471670759_bubble_chat_comment_message_outline_talk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_2.imageset/1471670759_bubble_chat_comment_message_outline_talk@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_2.imageset/1471670759_bubble_chat_comment_message_outline_talk@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_2.imageset/1471670759_bubble_chat_comment_message_outline_talk@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_3.imageset/1471670761_email_envelope_letter_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_3.imageset/1471670761_email_envelope_letter_mail.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_3.imageset/1471670761_email_envelope_letter_mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_3.imageset/1471670761_email_envelope_letter_mail@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_3.imageset/1471670761_email_envelope_letter_mail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_3.imageset/1471670761_email_envelope_letter_mail@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_4.imageset/1471670764_edit_editor_pen_pencil_write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_4.imageset/1471670764_edit_editor_pen_pencil_write.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_4.imageset/1471670764_edit_editor_pen_pencil_write@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_4.imageset/1471670764_edit_editor_pen_pencil_write@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_4.imageset/1471670764_edit_editor_pen_pencil_write@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_4.imageset/1471670764_edit_editor_pen_pencil_write@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_5.imageset/1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_5.imageset/1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_5.imageset/1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_5.imageset/1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_5.imageset/1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_5.imageset/1471670773_bell_sound_notification_remind_reminder_ring_ringing_schedule@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_6.imageset/1471670777_account_friend_human_man_member_person_profile_user_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_6.imageset/1471670777_account_friend_human_man_member_person_profile_user_users.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_6.imageset/1471670777_account_friend_human_man_member_person_profile_user_users@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_6.imageset/1471670777_account_friend_human_man_member_person_profile_user_users@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_6.imageset/1471670777_account_friend_human_man_member_person_profile_user_users@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_6.imageset/1471670777_account_friend_human_man_member_person_profile_user_users@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_7.imageset/1471670780_Download_save_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_7.imageset/1471670780_Download_save_down.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_7.imageset/1471670780_Download_save_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_7.imageset/1471670780_Download_save_down@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_7.imageset/1471670780_Download_save_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_7.imageset/1471670780_Download_save_down@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_7.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_8.imageset/1471670949_flag_notice_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_8.imageset/1471670949_flag_notice_warning.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_8.imageset/1471670949_flag_notice_warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_8.imageset/1471670949_flag_notice_warning@2x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_8.imageset/1471670949_flag_notice_warning@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_8.imageset/1471670949_flag_notice_warning@3x.png -------------------------------------------------------------------------------- /Example/ActionCell-Example/Assets.xcassets/image_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Assets.xcassets/image_8.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ActionCell-Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ActionCell-Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ActionCell-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/Info.plist -------------------------------------------------------------------------------- /Example/ActionCell-Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-Example/ViewController.swift -------------------------------------------------------------------------------- /Example/ActionCell-ExampleTests/ActionCell_ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-ExampleTests/ActionCell_ExampleTests.swift -------------------------------------------------------------------------------- /Example/ActionCell-ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/ActionCell-ExampleUITests/ActionCell_ExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-ExampleUITests/ActionCell_ExampleUITests.swift -------------------------------------------------------------------------------- /Example/ActionCell-ExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/Example/ActionCell-ExampleUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot/ActionCell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/ScreenShot/ActionCell.gif -------------------------------------------------------------------------------- /example/ActionCell-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/example/ActionCell-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /framework/ActionCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /framework/ActionCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /framework/ActionCell/ActionCell-Develop.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell/ActionCell-Develop.plist -------------------------------------------------------------------------------- /framework/ActionCell/ActionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell/ActionCell.h -------------------------------------------------------------------------------- /framework/ActionCell/ActionCell.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell/ActionCell.plist -------------------------------------------------------------------------------- /framework/ActionCell/ActionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell/ActionCell.swift -------------------------------------------------------------------------------- /framework/ActionCell/ActionControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell/ActionControl.swift -------------------------------------------------------------------------------- /framework/ActionCell/UITableViewCell+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCell/UITableViewCell+Extension.swift -------------------------------------------------------------------------------- /framework/ActionCellTests/ActionCellTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCellTests/ActionCellTests.swift -------------------------------------------------------------------------------- /framework/ActionCellTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongxiong/ActionCell/HEAD/framework/ActionCellTests/Info.plist --------------------------------------------------------------------------------