Edit iPhone Music ID3 Tags From App - iphone

I'd like to develop an iOS app that fixes tags in the user's music library using MusicBrainz. I haven't been able to find anything in the official SDK to facilitate the changing of ID3 tags for the song library, so I'm wondering if I missed something. Or does Apple even allow an app to behave like this? Any help would be appreciated :)

Well , as you know , Apple is pretty strict when it comes to messing up with their data.
iPod library can only be altered via iTunes syncing or iTunes downloading.
I hope they will give us programmers ways to (at least) create playlists , but until then , you could only accomplish that by jailbreaking and using private API's.

Related

Can Sharekit, GoogleMaps open sources used in making iPhone App?

i am using sharekit open source for facebook/twitter sharing , and also Google maps for displaying the maps and all that stuff like driving directions, current location, annotations etc etc in my iPhone application . i just want to know about its acceptance on itunes by apple.
Does Apple Approve share kit?
Can google maps be used in iPhone??
Please give me any idea about it
Thanks
Even though ShareKit is hopelessly dated and not updated since ages (last update over a year ago), there still is no reason for Apple to not approve your app when using it. Personally, I would strongly advise to not use ShareKit as it is super buggy and did not keep up with the latest changes on Twitter's API but that is your choice.
Google Maps also is not a show-stopper at all. As said by others, there are many Apps on the AppStore using it.

How to create an iPhone app that interacts with my website?

What I want to do is to make an iPhone application for my website similar to the photofunia. The users will be able to select an effect from a list, and then upload their own photo. Then the result will be shown in the browser where the user can save the image and/or publish to website like facebook, etc.
What software can I use to do that? Phonegap, appcelerator, etc? Can some of these help?
Thanks.
First of all, you may be able to make an iPhone app using Adobe Flash and the Adobe Packager for iPhone.
The other option is to get a Mac and Learn Objective-C.
There is no "easy" solution here.
Create a webservice for your website and try to use that in your iPhone Application
Of course I know there is no "easy" solution, but I'm almost sure there are other options for making iphone apps, instead of using Objective-C.
I only don't know the name of the tools.
Flash doesn't works. Adobe Air currently doesn't offer a way to access the camera roll on the ios.

What's the name of the app made by Apple for browsing iOS documentation?

Someone said there was an special iPad app from Apple that is made for browsing the iOS documentation and other related things. What's the name?
There's not a separate app that I know of. Rather, if you visit http://developer.apple.com/library/ios/navigation/index.html on an iPad, the website is specially formatted for viewing on an iPad.
This may sound like snark, but the only one I know of is Safari.app. When visiting the documentation site with Mobile Safari, it's served up differently.

How to develop an iPhone app to work with the current iPhone's music library

My friend (who knows nothing about programming what-so-ever) asked me if I could develop an iPhone application that lets the user select an artist from thier current synced artists on their iPhone music library, and display to them a list of concerts they will be playing in the near future. Maybe even use your current location to display the certain one you would be interested in.
Obviously, I told him no.
As I have no iPhone development experience and have only recently really started programming properly, I don't think I'm capable. But I'd still like to explore, seeing as I have just purchased a MacBook anyways!
Any ideas on how to approach this app?
Thanks in advance to everyone!
I'd rather recommend you playing with Last.fm API services.
Not exactly what you want but I am not sure if iPhone lets you access the artist library directly.
If it doesn't (which is yet to find out), you can write a plugin for iTunes that exports your music collection to your website and then access it from the iPhone.
The choice is up to you, but I'd probably stick with Last.fm.
The best place to start learning iPhone/iPad programming in general is to read this book:
http://www.amazon.com/Beginning-iPhone-Development-Exploring-SDK/dp/1430224592
And more specific to your question, yes, apps are allowed to access the iPod music library in the phone, through the MPMediaQuery class and its brethren:
http://developer.apple.com/library/ios/#documentation/Audio/Conceptual/iPodLibraryAccess_Guide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008765

iPhone app that access the Core Location framework over web

I was wondering if I could access the iPhones Core Location framework over a website?
My goal is to build a webapp/website that the iPhone would browse to, then upload its current GPS location. This would be a simple site primary for friends/family so we could locate each other. I can have them manually enter lng/lat but its not the easiest thing to find. If the iPhone could display or upload this automatically it would be great.
I don't own a Mac yet (waiting for the new Mac Book Pro) but would like something a little more automatic right now. Once I have the mac I could download the SDK and build a better version later. For now a webapp version would be great if possible. Thanks.
Why not simply use W3C GeoLocation API available in mobile Safari? This will work on ipod touch as well (suburb precision).
It's literally 10 lines of code and the javascript will work without change on Firefox 3.5. Far easier than scrape some third party website.
http://www.instamapper.com/iphone
iPhone App store
While this may not directly answer your question, there are quite a few iPhone apps that already do this kind of thing with GPS. Instamapper is the first one I pulled up from the app store, but I'm sure you could find something to fit your needs.
I'm pretty sure you can't do what you want directly.
The best idea I can come up with is to "reuse" an iPhone app that records location and makes it accessible on the web. Take Twitter for example. If I'm not mistaken, Tapulous' app Twinkle will grab your location and post it to your Twitter.com user profile. Here's an example of what that looks like:
From your webapp, you could then scrape the user page for each person whose location you're interested in. It's a pain in the butt, but like I said, this is the best I could come up with.
Again, if you don't want to mess with Twitter, there may be other apps out there that do this as well, but I don't personally know of any. Good luck.
We built a really thin iphone client app that simply calls a predefined .js file on our site. Works like a charm.
See arisgames.org for the project.