[go: up one dir, main page]

CN110175023A - Method and system based on the multistage nested linkage of the UIScrollView in iOS system - Google Patents

Method and system based on the multistage nested linkage of the UIScrollView in iOS system Download PDF

Info

Publication number
CN110175023A
CN110175023A CN201910452616.5A CN201910452616A CN110175023A CN 110175023 A CN110175023 A CN 110175023A CN 201910452616 A CN201910452616 A CN 201910452616A CN 110175023 A CN110175023 A CN 110175023A
Authority
CN
China
Prior art keywords
uiscrollview
linkage
uitableview
parent
nested
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201910452616.5A
Other languages
Chinese (zh)
Inventor
张丽
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Sichuan Changhong Electric Co Ltd
Original Assignee
Sichuan Changhong Electric Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Sichuan Changhong Electric Co Ltd filed Critical Sichuan Changhong Electric Co Ltd
Priority to CN201910452616.5A priority Critical patent/CN110175023A/en
Publication of CN110175023A publication Critical patent/CN110175023A/en
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms
    • G06F8/315Object-oriented languages
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/38Creation or generation of source code for implementing user interfaces
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/451Execution arrangements for user interfaces

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Human Computer Interaction (AREA)
  • Computing Systems (AREA)
  • User Interface Of Digital Computer (AREA)

Abstract

The present invention proposes a kind of method and system based on the multistage nested linkage of the UIScrollView in iOS system, belongs to mobile terminal iOS development technique field.The present invention solves the problems, such as event transmitting, gesture conflict and sliding Caton, drip irrigation device are as follows: system includes parent UITableView, segment selector SegmentView and multiple view slide handover page PageView.Method proposes solution aiming at the problem that being mainly to multistage nested UIScrollView linkage effect proposition implementation method and encountered in linkage.The present invention is fairly simple on implementation, quick, it can be effectively solved event transmitting and gesture collision problem simultaneously, and reach decoupling function, solve the problems, such as sliding Caton, promote user experience, an independent linked system is proposed for the exploitation in later corresponding field, can be widely applied in many iOS App.

Description

Method and system based on the multistage nested linkage of the UIScrollView in iOS system
Technical field
The present invention relates to mobile terminal iOS development technique fields, in particular to based on the UIScrollView in iOS system The method and system technical field of multistage nested linkage.
Background technique
With the progress with rapid changepl. never-ending changes and improvements that mobile terminal is developed, it is raw that the application based on iOS system exploitation also becomes people's modern times Indispensable a part in work.Either all kinds of news APP or all kinds of electric business shopping App, have been directed to corresponding classification The difference page presentation such as message, classified commodity and animation effect, also proposed newly to based on the technology that iOS system is developed accordingly Test.
All the time, in actual application and development, either iOS, React Native or Android can encounter Such a scene, it is nested sliding in vertical, horizontal direction that the interface UI can be related to multiple UIScrollView, ListView It is dynamic, and can also be related to the service logic of more complexity in some nested slidings.By taking iOS as an example, when handling problem above, I The mode that generallys use be UIScrollView nesting UIScrollView or UITableView, but exist in fact in this way Many problems also have many insoluble problems, while coupling is very strong, in multiple slip event transmittance process, hold Easily cause gesture conflict;If only allowing a UIScrollView to generate offset in the same time, when switching different blocks, Touch event can be responded by generating offset UIScrollView, be easy to happen while being rolled;If two nested UIScrollView can respond touch event simultaneously, and UIScrollview slip event triggers simultaneously to be caused to conflict;It was sliding The excessive caused Caton problem of DataSource in journey.
Summary of the invention
The method for the multistage nested linkage of the UIScrollView based in iOS system that the object of the present invention is to provide a kind of and System solves the problems, such as event transmitting, gesture conflict and sliding Caton.
The present invention solves its technical problem, the technical solution adopted is that: it is multistage based on the UIScrollView in iOS system The method of nesting linkage, includes the following steps:
One step 1, creation view controller ViewController, thus view controller controls corresponding logic Processing and View on data source show;
One step 2, initialization UITableview, wherein UITableView is one of UIScrollView, this When the UITableView that newly establishes be parent UIScrollView, the pattern and Delegate of UITableView are set;
It is embedding in step 3, initialization subclass UIScrollView, i.e., the parent UIScrollView initialized in step 2 Cover different subclass UIScrollView;
Step 4, according to the parent UIScrollView created in step 2, the BOOL of its GestureRecognizer is set Return value, and according to whether allow the View of response simultaneously to determine the BOOL value of return, if allow and meanwhile response if return YES returns to NO if not allowing, and in the case where returning to YES, can continue to transmit touch event, support nesting UIScrollView links simultaneously, returns to collaborative support in the case where NO;
Step 5, according to the parent UIScrollView created in step 2, monitor in parent UIScrollView ScrollViewDidScroll, specifically: determine whether to roll according to roll signal amount _ canScroll, if _ CanScroll is NO, is not rolled by the value of fixed contentOffset to realize, if _ canScroll is YES, is calculated inclined Shifting amount contentOffset, and rolled since notification agent realized when showing showing content;
Step 6, according to the subclass UIScrollView created in step 3, monitor in subclass UIScrollView ScrollViewDidScroll, specifically: determined whether to roll according to semaphore _ contentCanScroll, if _ ContentCanScroll is NO, is not rolled by the value of fixed contentOffset to realize, if _ ContentCanScroll is YES, and the container of subclass UIScrollView, i.e. parent UIScrollView is notified to start to roll, Setting _ canScroll is YES.
Further, in step 2, the UITableView created is inherited in UIScrollView, as MainScrollView。
Particularly, in step 3, the UIScrollView of creation is nested in the MainScrollView in step 2, Constitute multistage nested UIScrollView system.
Further, realizing nesting using the return value for monitoring GestureRecognizer in step 4 Can the linkage effect of UIScrollView be responded simultaneously by View and decide whether to link.
Particularly, in step 5-6, by monitoring in the multistage nested UIScrollView of father ScrollViewDidScroll, specifically: determined whether to roll according to roll signal amount, by locking offset The value of contentOffset does not allow the UIScrollView of rolling to fix, by recalculating offset ContentOffset, notification agent realize that the mode of agreement realizes rolling.
Based on the system of the multistage nested linkage of the UIScrollView in iOS system, applied to described based on iOS system In the multistage nested linkage of UIScrollView method, including parent UITableView, segment selector SegmentView With multiple view slide handover page PageView.
Further, the parent UITableView is special one of UIScrollView, for entire system The main view MainScrollView of system comprising: TableViewHeader and TableViewFooter, meanwhile, parent UITableView accommodates segment selector SegmentView and multiple view slide handover page PageView wherein, parent UITableView is used to show the information of main view, the page turning browsing of information when supporting to slide up and down.
Particularly, the segment selector SegmentView is that system switches the choosing of classification designed by categorizing selection area Device is selected, is realized based on UICollectionView.
Further, the segment selector SegmentView devises four basic selection blocks: M00, M01, M02 and M03, the switching between block is to pass through scrollToItemAtIndexPath:atScrollPosition: Animated: come realize click after slide into the effect of corresponding position.
Particularly, the multiple view slide handover page PageView is realized based on UICollectionView, according to The quantity of segment selector SegmentView, View involved in the switching page that multiple view slide handover page PageView is related to It include: UITableView, UIScrollView, UICollectionView and UIWebView, and these four switching pages are all ScrollViewDidScroll method can be responded;
Wherein, for switching page View described in type be UIScrollView when, need to be arranged The value of alwaysBounceVertical, i.e. scrollView.alwaysBounceVertical=YES, in this way when When contentSize is less than frame.size, ScrollView can also be rolled.
The invention has the advantages that passing through the above-mentioned multistage nesting linkage of UIScrollView based in iOS system Method and system, while can be effectively solved event transmitting and gesture collision problem, and reach decoupling function, solve sliding Caton problem promotes user experience, proposes an independent linked system for the exploitation in later corresponding field, can be extensive Applied in many iOS App.
Detailed description of the invention
Fig. 1 is that multistage nesting UIScrollView linkage effect flow diagram is realized in step S4.
Fig. 2 is step 5 UIScrollView slip gesture conflict flow diagram nested with multistage is handled in step 6.
Fig. 3 is the system structure diagram based on the multistage nested linkage of the UIScrollView in iOS system.
Specific embodiment
With reference to the accompanying drawing, the technical schemes of the invention are described in detail.
Method of the present invention based on the multistage nested linkage of the UIScrollView in iOS system, includes the following steps:
One step 1, creation view controller ViewController, thus view controller controls corresponding logic Processing and View on data source show.
One step 2, initialization UITableview, wherein UITableView is one of UIScrollView, this When the UITableView that newly establishes be parent UIScrollView, the pattern and Delegate of UITableView are set;It will step The ViewController created in rapid 1 is set as the Delegate and DataSource of MFNestTableView, Agreement MFNestTableViewDelegate&MFNestTableViewDataSource is realized in ViewController.
It is embedding in step 3, initialization subclass UIScrollView, i.e., the parent UIScrollView initialized in step 2 Cover different subclass UIScrollView.
Step 4, according to the parent UIScrollView created in step 2, the BOOL of its GestureRecognizer is set Return value, i.e. implementation method :-(BOOL) gestureRecognizer:(UIGestureRecognizer*) gestureReco gnizershouldRecognizeSimultaneouslyWithGestureRecognizer: (UIGestureRecognizer*)otherGestureRecognizer;
And according to whether allow the View of response simultaneously to determine the BOOL value of return, if allow and meanwhile response if return YES returns to NO if not allowing, and in the case where returning to YES, can continue to transmit touch event, support nesting UIScrollView links simultaneously, returns to collaborative support in the case where NO, this step is the key that solve nested linkage, wherein Realize multistage nesting UIScrollView linkage effect flow diagram referring to Fig. 1.
Step 5, according to the parent UIScrollView created in step 2, monitor in parent UIScrollView ScrollViewDidScroll, specifically: determine whether to roll according to roll signal amount _ canScroll, if _ CanScroll is NO, is not rolled by the value of fixed contentOffset to realize, if _ canScroll is YES, is calculated inclined Shifting amount contentOffset, and rolled since notification agent realized when showing showing content, i.e., we are right ScrollViewDidScroll: method is monitored, and realizes logical process.
Step 6, according to the subclass UIScrollView created in step 3, monitor in subclass UIScrollView ScrollViewDidScroll, specifically: determined whether to roll according to semaphore _ contentCanScroll, if _ ContentCanScroll is NO, is not rolled by the value of fixed contentOffset to realize, if _ ContentCanScroll is YES, and the container of subclass UIScrollView, i.e. parent UIScrollView is notified to start to roll, Setting _ canScroll is YES, and implementation above logic in monitor method scrollViewDidScroll all by realizing.
In the step 2 of the above method, the UITableView that is created is inherited in UIScrollView, as MainScrollView;In step 3, the UIScrollView of creation is nested in the MainScrollView in step 2, structure At multistage nested UIScrollView system;In step 4, realized using the return value for monitoring GestureRecognizer Can the linkage effect of nested UIScrollView be responded simultaneously by View and decide whether to link.
In step 5-6, by monitoring ScrollViewDidScroll in the multistage nested UIScrollView of father, specifically Are as follows: determined whether to roll according to roll signal amount, the value by locking offset contentOffset does not allow to roll to fix Dynamic UIScrollView, by recalculating offset contentOffset, notification agent realizes that the mode of agreement realizes rolling It is dynamic.
Step 5 and step 6 are the key that solve slip gesture collision problem, in step 5 and step 6, are handled multistage nested UIScrollView slip gesture conflicts flow diagram referring to fig. 2.
Based on the system of the multistage nested linkage of the UIScrollView in iOS system, structural schematic diagram, should referring to Fig. 3 System is applied to the method based on the multistage nested linkage of the UIScrollView in iOS system, mainly includes A00: father Class UITableView, A01: segment selector SegmentView, A02: multiple view slide handover page PageView.
In above system, A00 is special one of UIScrollView, is the main view of whole system MainScrollView comprising: TableViewHeader and TableViewFooter, meanwhile, A00 holds A01, A02 It receives wherein, A00 is mainly used for showing the information of main view, the page turning browsing of information when supporting to slide up and down.
A01 is that system switches categorizing selection device designed by categorizing selection area, is realized based on UICollectionView , constituency quantity can be designed as needed, devise four basic selection blocks: M00, M01, M02, M03 in the present invention;Area Switching between block mainly passes through scrollToItemAtIndexPath:atScrollPosition:animated: coming real The effect of corresponding position is slided into after now clicking.
A02 is multiple view slide handover page in present system, is based on UICollectionView equally to realize, root According to the quantity of A01, View involved in the switching page that A02 is related to specifically include that UITableView, UIScrollView, UICollectionView and UIWebView, and these four switching pages can respond ScrollViewDidScroll: method;
Wherein, for switching page View described in type be UIScrollView when, need to be arranged The value of alwaysBounceVertical, i.e. scrollView.alwaysBounceVertical=YES, in this way when When contentSize is less than frame.size, ScrollView can also be rolled.

Claims (10)

1. the method based on the multistage nested linkage of the UIScrollView in iOS system, which comprises the steps of:
One step 1, creation view controller ViewController, thus view controller controls at corresponding logic Reason and View on data source show;
One step 2, initialization UITableview, wherein UITableView is one of UIScrollView, just at this time The UITableView of wound is parent UIScrollView, and the pattern and Delegate of UITableView is arranged;
Step 3, initialization subclass UIScrollView, i.e., in the parent UIScrollView initialized in step 2 it is nested not Same subclass UIScrollView;
Step 4 is returned according to the parent UIScrollView created in step 2, the BOOL that its GestureRecognizer is arranged Value, and according to whether allow the View of response simultaneously to determine the BOOL value of return, if allow and meanwhile response if return to YES, if Do not allow, return to NO, in the case where returning to YES, can continue to transmit touch event, support nested UIScrollView simultaneously Linkage returns to collaborative support in the case where NO;
Step 5, according to the parent UIScrollView created in step 2, monitor in parent UIScrollView ScrollViewDidScroll, specifically: determine whether to roll according to roll signal amount _ canScroll, if _ CanScroll is NO, is not rolled by the value of fixed contentOffset to realize, if _ canScroll is YES, is calculated inclined Shifting amount contentOffset, and rolled since notification agent realized when showing showing content;
Step 6, according to the subclass UIScrollView created in step 3, monitor in subclass UIScrollView ScrollViewDidScroll, specifically: determined whether to roll according to semaphore _ contentCanScroll, if _ ContentCanScroll is NO, is not rolled by the value of fixed contentOffset to realize, if _ ContentCanScroll is YES, and the container of subclass UIScrollView, i.e. parent UIScrollView is notified to start to roll, Setting _ canScroll is YES.
2. the method according to claim 1 based on the multistage nested linkage of the UIScrollView in iOS system, feature It is, in step 2, the UITableView created is inherited in UIScrollView, as MainScrollView.
3. the method according to claim 1 or 2 based on the multistage nested linkage of the UIScrollView in iOS system, It is characterized in that, in step 3, the UIScrollView of creation is nested in the MainScrollView in step 2, is constituted multistage Nested UIScrollView system.
4. the method according to claim 1 based on the multistage nested linkage of the UIScrollView in iOS system, feature It is, in step 4, realizes that the linkage of nested UIScrollView is imitated using the return value for monitoring GestureRecognizer Can fruit be responded simultaneously by View and decide whether to link.
5. the method according to claim 1 based on the multistage nested linkage of the UIScrollView in iOS system, feature It is, in step 5-6, by monitoring ScrollViewDidScroll in the multistage nested UIScrollView of father, specifically: Determined whether to roll according to roll signal amount, the value by locking offset contentOffset does not allow to roll to fix UIScrollView, by recalculating offset contentOffset, notification agent realizes that the mode of agreement realizes rolling It is dynamic.
6. being applied to claim 1-5 any one based on the system of the multistage nested linkage of the UIScrollView in iOS system The method based on the multistage nested linkage of the UIScrollView in iOS system, which is characterized in that including parent UITableView, segment selector SegmentView and multiple view slide handover page PageView.
7. the system according to claim 6 based on the multistage nested linkage of the UIScrollView in iOS system, feature It is, the parent UITableView is special one of UIScrollView, is the main view of whole system MainScrollView comprising: TableViewHeader and TableViewFooter, meanwhile, parent UITableView will Segment selector SegmentView and multiple view slide handover page PageView are accommodated wherein, and parent UITableView is used for Show the information of main view, the page turning browsing of information when supporting to slide up and down.
8. the system according to claim 6 based on the multistage nested linkage of the UIScrollView in iOS system, feature It is, it is to be based on that the segment selector SegmentView, which is that system switches categorizing selection device designed by categorizing selection area, What UICollectionView was realized.
9. the system according to claim 8 based on the multistage nested linkage of the UIScrollView in iOS system, feature It is, the segment selector SegmentView devises four basic selection blocks: M00, M01, M02 and M03, block Between switching be to pass through scrollToItemAtIndexPath:atScrollPosition:animated: come realize click The effect of corresponding position is slided into afterwards.
10. the system according to claim 6 or 9 based on the multistage nested linkage of the UIScrollView in iOS system, It is characterized in that, the multiple view slide handover page PageView is realized based on UICollectionView, is selected according to segmentation The quantity of device SegmentView, View involved in the switching page that multiple view slide handover page PageView is related to include: UITableView, UIScrollView, UICollectionView and UIWebView, and these four switching pages can respond ScrollViewDidScroll method;
Wherein, for switching page View described in type be UIScrollView when, alwaysBounceVertical need to be set Value, i.e. scrollView.alwaysBounceVertical=YES, in this way when contentSize be less than frame.size When, ScrollView can also be rolled.
CN201910452616.5A 2019-05-28 2019-05-28 Method and system based on the multistage nested linkage of the UIScrollView in iOS system Pending CN110175023A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910452616.5A CN110175023A (en) 2019-05-28 2019-05-28 Method and system based on the multistage nested linkage of the UIScrollView in iOS system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910452616.5A CN110175023A (en) 2019-05-28 2019-05-28 Method and system based on the multistage nested linkage of the UIScrollView in iOS system

Publications (1)

Publication Number Publication Date
CN110175023A true CN110175023A (en) 2019-08-27

Family

ID=67696463

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910452616.5A Pending CN110175023A (en) 2019-05-28 2019-05-28 Method and system based on the multistage nested linkage of the UIScrollView in iOS system

Country Status (1)

Country Link
CN (1) CN110175023A (en)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111090424A (en) * 2019-11-28 2020-05-01 武汉虹信技术服务有限责任公司 iOS-based infinite-level address book building method
CN111340958A (en) * 2020-02-12 2020-06-26 广东趣炫网络股份有限公司 SrollView sliding stuck optimization method, device, equipment and readable storage medium
CN112328255A (en) * 2020-10-26 2021-02-05 成都商通时代数字科技有限公司 Page turning refreshing method and refreshing system for universal integrated list based on IOS (input/output system)
CN113760163A (en) * 2020-07-13 2021-12-07 北京沃东天骏信息技术有限公司 A scroll view control method, device, device and storage medium
CN115396546A (en) * 2022-07-22 2022-11-25 上海万物新生环保科技集团有限公司 Conflict processing method and device for sliding event
CN115708345A (en) * 2023-01-06 2023-02-21 山东捷瑞数字科技股份有限公司 UIScrollView-based pull-down interface dynamic display method in digital twin scene

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9075519B2 (en) * 2012-10-11 2015-07-07 Apple Inc. System and method for interacting with a displayed work space
CN105677366A (en) * 2016-02-26 2016-06-15 四川长虹电器股份有限公司 Method for achieving infinite circulating rolling selection based on UITableView in iOS
CN109254823A (en) * 2018-09-21 2019-01-22 武汉华中时讯科技有限责任公司 A kind of method, memory and the terminal of the paging view elements of changing multi-stage nesting

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9075519B2 (en) * 2012-10-11 2015-07-07 Apple Inc. System and method for interacting with a displayed work space
CN105677366A (en) * 2016-02-26 2016-06-15 四川长虹电器股份有限公司 Method for achieving infinite circulating rolling selection based on UITableView in iOS
CN109254823A (en) * 2018-09-21 2019-01-22 武汉华中时讯科技有限责任公司 A kind of method, memory and the terminal of the paging view elements of changing multi-stage nesting

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
PURE蓝胖子: "iOS scrollView嵌套tableView的手势冲突解决方案", 《HTTPS://WWW.JIANSHU.COM/P/8BF6C2953DA3》 *

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111090424A (en) * 2019-11-28 2020-05-01 武汉虹信技术服务有限责任公司 iOS-based infinite-level address book building method
CN111090424B (en) * 2019-11-28 2023-12-19 武汉虹信技术服务有限责任公司 Infinite-level address book building method based on iOS
CN111340958A (en) * 2020-02-12 2020-06-26 广东趣炫网络股份有限公司 SrollView sliding stuck optimization method, device, equipment and readable storage medium
CN111340958B (en) * 2020-02-12 2021-10-15 广东趣炫网络股份有限公司 ScrollView sliding card pause optimization method, device, equipment and readable storage medium
CN113760163A (en) * 2020-07-13 2021-12-07 北京沃东天骏信息技术有限公司 A scroll view control method, device, device and storage medium
CN112328255A (en) * 2020-10-26 2021-02-05 成都商通时代数字科技有限公司 Page turning refreshing method and refreshing system for universal integrated list based on IOS (input/output system)
CN115396546A (en) * 2022-07-22 2022-11-25 上海万物新生环保科技集团有限公司 Conflict processing method and device for sliding event
CN115396546B (en) * 2022-07-22 2023-10-27 上海万物新生环保科技集团有限公司 Conflict processing method and device for sliding event
CN115708345A (en) * 2023-01-06 2023-02-21 山东捷瑞数字科技股份有限公司 UIScrollView-based pull-down interface dynamic display method in digital twin scene

Similar Documents

Publication Publication Date Title
CN110175023A (en) Method and system based on the multistage nested linkage of the UIScrollView in iOS system
US20180101292A1 (en) Application Reporting in an Application-Selectable User Interface
US8972884B2 (en) Presenting information pertaining to a plurality of tabs in an instant messaging application
CN105589631B (en) Information displaying method and device
CN105320766A (en) Information pushing method and apparatus
CN104903932A (en) Customizing shared web resource snapshots
CN105528408A (en) Page display method and apparatus
CN107066174A (en) Floating layer display methods, device and user terminal
CN110427232A (en) Page management method, device, computer equipment and storage medium
CN105117491A (en) Page pushing method and device
CN103517149A (en) Homepage design method of smart television based on android platform
CN102929486A (en) Terminal and link processing method
CN105677658A (en) Page display method and device
CN111338625A (en) Data processing method, system, terminal equipment and storage medium
CN109144562B (en) A kind of smart code publication alarm method based on zookeeper
CN104408193B (en) The processing method and processing device of data visualization model
CN102855061A (en) Mailbox interface interaction method and device based on multi-label window
CN110505287B (en) Service-based business line recommendation method, device and storage medium
US11112938B2 (en) Method and apparatus for filtering object by using pressure
CN108319624A (en) Data load method and device
CN107808299B (en) Marketing system and marketing method convenient for accessing external system
CN107239212B (en) Method and device for presenting segmentation selection view and user terminal
CN106528140A (en) Specification adaptation method and device
CN113835610B (en) Page display method and device for terminal application
US20190087854A1 (en) Graphical system for database marketing

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication

Application publication date: 20190827

RJ01 Rejection of invention patent application after publication