iOS source code download: scroll view of text + pictures

iOS source code download: scroll view of text + pictures

Functional classification: Other

Supported platforms: iOS

Operating environment: iOS

Development language: Object-C

Development tools: Xcode

Source code size: 1.22MB

Source code download address: http://down..com/data/1976925

Source code introduction

This is a scroll view that combines questions and pictures. It can scroll the content left and right and display text descriptions.

Source code running screenshot

Rendering

Source code snippet

  1. - ( void )viewDidAppear:( BOOL )animated
  2. {
  3. [super viewDidAppear:animated];
  4. NSString *path = [[NSBundle mainBundle] pathForResource:
  5. @ "Places" ofType:@ "plist" ];
  6.       
  7. NSMutableArray *placeArray = [[NSMutableArray alloc] initWithContentsOfFile:path];
  8.       
  9. NSMutableArray *array = [[NSMutableArray alloc] init];
  10. for ( int i =0 ; i < [placeArray count] ; i++){
  11.           
  12. NSDictionary *dict = [placeArray objectAtIndex:i];
  13. PJRItems *item = [[PJRItems alloc] init];
  14. item.itemTitle = [dict objectForKey:@ "placeName" ];
  15. item.itemDesc = [dict objectForKey:@ "placeDesc" ];
  16. item.itemImage = [dict objectForKey:@ "placeImage" ];
  17. [array addObject:item];
  18. }
  19.       
  20. PJRPageScrollingView *pagScrollView = [[PJRPageScrollingView alloc] initWithFrame:self.view.bounds withNumberOfItems:array];
  21. [self.view addSubview:pagScrollView];
  22.   
  23. }

Source code download address: http://down..com/data/1976925

<<:  Android source code download: My Gesture Lock

>>:  The HTML5 era has arrived and is gradually being truly implemented

Recommend

Microsoft's Cortana predicts the World Cup with accuracy comparable to an octopus

Since the departure of Paul the Octopus, there has...

Kitchen waste is annoying, to free up time, you need this magic tool

The most popular issue in life recently is garbag...

The 10 most popular growth hacking strategies in China in 2017

Any growth practice starts with small things. In ...

Will tap water be contaminated after heavy rain and floods?

gossip: Since July 17, 2021, Henan has experience...

Looks cool iris photos, but actually hides a mystery

Produced by: Science Popularization China Author:...

Universal formula for online event promotion and marketing planning!

In this article, the author will tell you about h...

How to increase your conversion rate by 3-5 times?

Assuming that all other conditions remain unchang...

How to use data to capture your target users?

A question that operations personnel are usually ...

The "dark mode" you see in iOS 13 is actually not eye protection

The bright white background is gradually being re...