creating thumbnailview for photo gallery in sencha - sencha-touch-2

I am trying to create a photo gallery using Sencha Architect. On first screen I want to display image thumbnails displaying 4 images wide row.
Screen 2 will display a selected image, with name and image number ., say -3 of 10 at top.
I searched for a this on Google but not able to find any sample code or documention.
Is there any any sample code or doc available?
I need help in designing this code.
Thanks.

You can get some ideas from touchstyle example which comes with sencha touch library or have a look at this http://www.touchstyle.mobi/app/

Related

Add sticker and resize with Pinch in or Pinch out in react Native: Picture Editing Application

I'm Trying to built a picture editing application and so far im able to select a picture from gallery and able to add stickers on it (e.g hair styles, eyebrows, nose etc) but im not able to resize these stickers according to picture
i dont know which package to use and how to make it work, please help
You can use react-native-stickers or in your solution use react-native-gesture-handler.

Is it possible to draw grid lines using AVFoundation Framework in Objective c

I am creating the app like VSCO Cam, so I imported AVFoundation framework to my project and used AVCaptureSession to create the custom camera.I also need to create the custom filters as same as VSCO Cam.
Now I want to add the gridlines on the camera by clicking a button.I searched for more tutorials, but I couldn't sort it out.I tried drawing grid lines using AVCaptureManager by seeing this link how to draw grid lines when camera is open avcapturemanager, But I cannot overlay the view with camera view.I'm a new bee to development.
Thanks in advance.
Yes.Create a tranparent UIView and place it on top of the camera preview. Then you can draw what ever you like in that view or you can append the image.

Multiple ImageView's that allow for deletion

I am currently trying to add multiple imageviews like in this picture (http://i.imgur.com/DEkoBD0.png) to a view controller. I would also like the option to be able to delete specific images, and also have the whole view controller in a scrollview incase the user wants to add numerous images.
So far I have one imageview that can be set to either a picture from the camera or from the photo library, what I would like is when a user add's a image, another option displays next to it to upload another image such as the picture in the link I provided.
I am currently using the Xcode 5 with storyboards and developing for iOS 7 also.
Any help is appreciated.
Thanks.
Simply use a UICollectionView !
Reference : https://developer.apple.com/library/ios/documentation/UIKit/Reference/UICollectionView_class/Reference/Reference.html
It will allow you to add functionalities like delete or add for example (w/ ScrollView ;) )!

iphone app that takes photo or video in one view

i am looking for some sample code/tutorial that will demonstrate taking a photo or video using one view in an iPhone app, with a toggle switch. Similar to the built-in iOS camer app.
any help is greatly appreciated!
This library includes the functionality for both photo and video taking. Also, it allows you to present a popup for the user to select photo/video.
https://www.cocoacontrols.com/controls/fdtake

Transition between multiple views

In my app I want to show multiple views one after another to show multiple values when the user slides his finger on the screen, just like photo album. I want the same animation. Can anyone explain how I can achieve this?
You can store the images in an array... By using the UISwipeGestureRecognizer you can able to do the photo album.... if you have any doubt communicate with me...
I suggest looking at one of the WWDC 2010 sessions, I believe it was called "Designing apps with scroll views", it basically builds the exact thing your looking for with UIScrollViews. Take a look at the video and the sample code - https://developer.apple.com/videos/wwdc/2010/?id=104 and the sample code should be here http://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?code=y&source=x&bundleID=20645
PS! You have to be a iPhone Developer to access this content.