Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Iam sure this is a dumb questions, but I've been searching all over the place without knowing what exactly Iam looking for. Is there a way to efficiently create a "photofolder" like the one in the standard Photos.app. Facebook seems to have this built in.
I guess I could have "hacked" a way to do it eventually, but Iam concerned with memory and best-practices. I've added an image to illustrate my what I want:
(source: bhs4.com)
So to be short; I want the thumbnail/folder look. Any good guides/tips?
Edit: Iam going to get images the images from Instagram if that matters!
Apple appears to be using a UICollectionView to display the images in a 'thumbnail grid' fashion.
For more info, Google UICollectionView
There are some open-source posibilities to display a photo-browse view controller. Search on github. I have found https://github.com/kirbyt/KTPhotoBrowser, which seems to be exactly what you are looking for, but there are other similar alternatives as well.
Hope it helps!
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 months ago.
Improve this question
I am developing an app that must have a functionality to read from Google Sheets, write, and update.
I looked into the Sheets API and it documents how to implement it with various programming languages, but not swift. I'm wondering if there is any way to implement Google Sheets API in swift, and how would the app be able to read and write?
Thank you!
It looks like the only official documentation from Google related to this can be found here, although I think you may be looking for something more specific like this one.
This second library seems a bit more documented since the creator does not just explain what it can do but it also provides examples on how to use it.
There is also this method that includes examples and images on how it works.
References:
First mentioned library with samples
Second mentioned library with samples and images
Google's "official way" with limited documentation
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have finished an online course in iOS development on Udemy and I'm ready to start developing my first (real) app.
My goal is to make a teleprompter app similar to: https://itunes.apple.com/dk/app/video-teleprompter-lite/id1031079244?mt=8
To start with, I would like to create just the moving text. I have looked at various concepts such as Core Animation, Text View, Segue from one view controller to another etc. But none of them seem to be able to display the moving text in the proper "teleprompter way".
I would really appreciate suggestions as to how to start/which relevant concepts to look at in this context.
Try reading up on UIDynamics, UIPushBehavior.
https://developer.apple.com/reference/uikit/uidynamicanimator
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Now I am making a Electronic album on iPad and I want to show the photos like this:
I have no idea where I can find this kind of control . Does any one know it or some places that I can find it? Really thanks!
We use iCarousel. I've posted a link to the author's github repository, since you seem to be having a problem going in via Cocoa Controls.
Check out this Carousel class: http://cocoacontrols.com/platforms/ios/controls/icarousel
You might try taking a look around cocoacontrols.com. Do a search for coverflow there. This one looks like it might be a good starting place: http://cocoacontrols.com/platforms/ios/controls/icarousel
https://github.com/devinross/tapkulibrary u can make a coverflow like feature with this library
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I maintain an app for my business and am pretty much self-taught on code. I understand all of the structural code, and everything is perfectly usable. My problems is with the overall boringness of the looks. Everything is stock iOS from buttons to backgrounds to pinstripes on the list view. Does anyone have any guides or tutorials they used to take a stock iOS app's look to something like the Piictu app? (I'm not looking for something that impressive but in between that and stock iOS; and I'm open to a full app re-start.)
Almost all of controls can be customized with the view properties. and also there are lots of fully customized controls published with its source code.
With iOS5 there is a lot more scope now for customisation of UIKit elements. However, where this is not custom enough for your design then you would need to write your own controls rather than only using Apple'. There are a few good ADC videos on this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
The path for the thumbnails of the images located in the iPhone is: /private/var/mobile/Media/DCIM/100APPLE/.MISC/ (or instead of 100APPLE we have 101APPLE, 102APPLE etc).
If I want to pick these images directly from these folders, what is the best way to improvise a nice picker like the one for UIImagePickerControllerSourceTypePhotoLibrary?
I have already seen some attempts using UITableView and UIPickerView. Any other ideas?
Any recommended TUTORIAL?
what is the best way?
I really don't know so ideas still welcome.
Any other ideas?
Yes. Using a thumbnail scrollview.
Any recommended TUTORIAL?
Not a tutorial but even better, sample code. Using sample code from Apple Developer:
Autoscroll from ScrollViewSuite
I previously wrote "Your application runs in a sandbox. This means that directories like /private/var are not available to your application. It is therefore not possible to create a custom picker that looks directly in those folders."
This turns out not to be the case. I am totally surprised that iPhone applications do actually have access to most of the filesystem.