Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
In my application, you can take photos or choose photos from the library in order to use them as a background image later.
I would like to ask for a tutorial that explains how to save these photos using Core Data.
Sorry if this question is not appropriate, I know that StackOverflow is only for code questions. And sorry for my bad English, I am Spanish.
Thank you!
Here this is a nice tutorial. It teaches you how to use core data over all but it also teaches with pictures. By the way you need to create a new attribute with the type binary data to save the photo. Basically you need to convert your image into NSData and then save it in your attribute. To get it out convert NSData to a UIImage.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I need create this table but do not know that objects do I need to use and what logic I need to create it?
Please check this links :
http://www.raywenderlich.com/29472/ipad-for-iphone-developers-101-in-ios-6-uipopovercontroller-tutorial
http://code4app.net/ios/ZSYPopoverListView/51aae6396803fa3e0f000002
might be helpful in your case.
As there is no default way to achieve something like this. But there are a lot of example with source code. See this link.
You'll find a lot of controls of this type. You can also get the source from here. Pick any one and read the documentation carefully. Hope you;ll understand.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
What's better approach to develop UI/UX similar to facebook new feed and attached Image.
I would like to make it as an Native app. If there is any framework available then I'm willing to use that also.
https://parse.com/tutorials/anypic
https://github.com/ParsePlatform/Anypic
This open source code available for this app.
This app similar to Instagram app. This shows social feeds of images shared by user.
They have custom TableViewCell and TableViewHeaders.
Try this. It might help you.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Would anyone please suggest me how can we edit word document in iphone/iPad application. I wont to open word document in my app and change font style and color and save it again. Is there any paid or free API or document for this which can help me for this.
I don't understand why you guys close this question. Look In below application on app store,
https://itunes.apple.com/us/app/quickoffice-edit-office-documents/id578386521?mt=8
https://itunes.apple.com/us/app/office2-hd/id364361728?mt=8
In above app he edit word document. I also tried below site for getting my point
http://ios-blog.co.uk/tutorials/rich-text-editing-sample-project/
http://ios-blog.co.uk/tutorials/rich-text-editing-sample-project/
and many more but not getting exact idea how above application make document editable. So If you have any idea so please share.
Thanks.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I realize this is a difficult question without a straightforward answer, but I'm hoping for some suggestions of frameworks or libraries I should start with.
Imagine a view that contains a background image, some smaller images overlaid, and a small video (an MPMoviePlayerController view) overlaid. What I need to do is create a composite video of the entire view. So the final result saved to disk would be all the images and the video combined into one video file.
What AV tools are available that would be most likely to help accomplish this?
AVAssetWriter seems to be the best option for doing this.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm working on a project in which I want to add a draw/sketch feature that draws by the user's touches on screen. That way they can make simple drawings on a view. This is a concept used in many picture apps (i.e. SnapChat). I've done many Google searches but haven't found anything out there that I could use. Does Apple have a guide or class for this or is there are any algorithms or code out there that's available to the public? Please provide me with references or information regarding this topic. Thanks in advance for your time.
I really like the ray wenderlich tutorials.
They also have a tutorial on how to make a simple drawing app.
http://www.raywenderlich.com/18840/
I think it should give you a hint on how drawing works.