I want to get the information about the music track playing in the IPhone.
And my application is a seperate one which is running on the IPhone
do I able to get that information?
...
Hey folks.
I wasn't able to find a clean answer on this, is there or is there not a way to connect my iPhone to a bluetooth printer to execute some printing tasks?
I'm developing the app myself, so what framework could possibly do this? i read that Apple's External Accessory Framework handles bluetooth communication, but is it possible ...
Going through the Game Center / GameKit docs, I could not find any information on specifying game configuration variables for a match.
Let's say that you want to specify certain features a match should have to qualify for match making (e.g. you want to exclude certain weapons from the game, want to specify a length for the match etc.). ...
Hey Guys,
So I have a simple split view that functions great except when the view loads. For some reason if it loads in landscape mode, it only loads on ~half the screen (it seems like it is the width of the portrait mode). Does anyone know what may be causing this behavior? I am using the default split view controller provided by th...
I'm seeing some weirdity and am trying to determine - environment or me ... FWIW - I'm working through chapter 12 in Tim Isted's book. I've double & triple checked - still getting weird results -
...
I am trying to achieve an effect similar to the globe of the ABC News iPad app. (Google Images Examples)
Is it possible to get this effect by transforming CALayers? Or is this using OpenGL and fragment/vertex shaders?
CALayer provides access to the transformation matrix, is there some math that can be applied to this rather than transf...
Hi all,
I'm trying to use the Skype SMS URI from an iOS (iPhone/iPod Touch) app, i.e. opening the skype:+33123456789?sms URI. It works great on my Mac, with Skype installed (typing open 'skype:+33153928448?sms' in the terminal or in a URI bar will bring Skype and start composing the text message).
However, it fails miserably on the iPh...
What is the best plotting library for the iPhone's iOS SDK? I tried out core plot but looks like it's still pretty unstable.
Any help would be appreciated.
...
My universal app is a single full screen view. Pressing a button flips to reveal a settings page:
- (void) showSettings
{
FlipsideViewController * flipsideVC = [FlipsideViewController alloc];
NSString * settingsNib;
if ( isIPad() )
settingsNib = isCurrentlyPortrait() ? @"settings_iPad_portrait" : @"settings_iPad_landscape";
else
...
Guys, I am a newbee for iOS.
I need to create dynamic layout since the GUI will be generated according to the data.
I checked the UIView references, it seems the standard way to add subview is like:
CGRect rect = CGRectMake(0, 0, width, height);
UILabel *label = [[UILabel alloc] initWithFrame: rect];
[someView addSubView: label];
But...
I have an error similar to the one in this post. Now, I'm sure I've made some stupid error somewhere, probably related to releasing an object or an observer or what-not, but since I can't seem to find a way to debug the code I thought I could use the NSDebugEnabled, NSZombieEnabled and MallocStackLogging (as shown here).
Can it be done...
I have to do this:
1:CGRect originalSubviewFrame = subview.frame;
2:view.frame = (CGRect)newFrame;
3:subview.frame = originalSubviewFrame;
I think instructions 1 and 3 shouldn't be there but if I don't restore the subview shape, it change for some reason!?!?
I read the documentation but it's unclear.
...
I am trying to have some controls appear when you push a button and have it disappear when you press a different button. Right now the HUD is comprised of an image view, and some custom buttons in a UIView called "credits". I've managed to have it disappear using:
[credits removeFromSuperview];
How do I have it reappear?
...
I have been working on the iPhone development for three months now. I have a fairly decent understanding of Objective-C and iOS, but I have been putting Interface Builder on the back burner.
I am looking for resources, preferably non-video as well as video (as my Internet connection is very slow)
What's my best path to getting a han...
Is it possible to skin the tab bar similarly to the Game Center tab bar? How so?
...
I'm trying to load a default set of data from a csv file into my core data db. So initially i'm trying to read in a csv file and output it to the log before trying to add it to the core data database.
This is the code i'm using;
//Find import file;
NSString *defaultCSVPath = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"csv"...
Hi,
I want to save a screenshot or generate a pdf from UIWebView text content. I know about how to make screenshots like described in:
http://developer.apple.com/library/ios/#qa/qa2010/qa1703.html
The thing is I'd like to have the screenshot in 300dpi. It is a fixed requirement to generate the content in a UIWebView.
I thought about ...
Hi,
I have set up a delegate for my class 'HotRequest', but am having problems implementing it. The code for my class is below. Any ideas? Thanks
HotRequest.h
#import <Foundation/Foundation.h>
@protocol HotRequestDelegate;
@interface HotRequest : NSObject {
NSString *requestString;
id <HotRequestDelegate> delegate;
}
@prope...
I'm working with some Core Animation for the first time and in the process of implementing a playing card that I can flip around, I've decided to use a CALayer to display the contents (not sure how I'm going to get two sides, but that's another question) and I need to be able to flip it over, move it, etc...
I'm using CATransaction with...
I'd like to use iOS device as a TCP client, but I can't find an understandable API/guide/sample of how to do that. I tried SimpleNetworkStreams and PictureSharing, but they are both using Bonjour. I can make UDP connections easily, learned via UDPEcho, but I can't find as good sample as UDPEcho for TCP. I want a simple example of connect...