sdk

iPhone App Development - mathematical sysmbols

I am quite the beginner - but I have a lot of experience with respect to Electrical Engineering and formulas - over 30 years worth! Trying to construct an app for the iPhone. Loaded the SDK, bought myself a Mac, got a couple of "Chapter" pages written by John at Alpha Aviation - who recomended I try this site. How do I - well for example...

Where is the Bonjour COM library?

I've downloaded and installed the Bonjour SDK for Windows on my Win7 64bit machine. I've tried to build both of the the projects in C:\Program Files\Bonjour SDK\Samples\CS. However they both reference Bonjour, causing me to get the following build error 'Cannot load type library for reference "Bonjour". Library not registered.' Bonjou...

How to display HTML-like table data on iPhone?

I have a set of data in a matrix which I would like to display in my iPhone app with all of the rows and columns intact. Everything I can find on the web dealing with "tables iPhone" gives me information on UITableView, which only lets you show a list of items to the user - not an actual table in the HTML sense. What's the best way on th...

Capture screenshot Including Semitransparent windows in .NET

I would like a relatively hack-free way to do this, any ideas? For example, the following takes a screenshot that doesn't include the semi-transparent window: Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Shown Text = "Opaque Window" Dim win2 As N...

Android SDK manager fails, if launched from Eclipse

Has anyone seen this problem? I'm in the middle of updating my SDK to add Android 2.2, on my Mac. You don't have to download the entire SDK -- there is a tool already on your system which can download just the extra parts of Adroid 2.2 This page explains: http://developer.android.com/sdk/adding-components.html The tool is called the ...

Android App Templates?

Are there Android app templates, similar to the iPhone SDK templates? ...

iPhone .. NSString being released & dealloc -- but I cannot tell where or why...

This is KILLING me! I have a view. in the .h file i do this: @interface SearchLogs : UIViewController <UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate, UIActionSheetDelegate, UIPickerViewDelegate> { NSString *startDate; NSDateFormatter *thisFormatter; } @property (nonatomic, retain) NSString *startDate; @property (n...

What's wrong with and extern NSMutableArray?

Hi Guys! So I've been doing a lot of reading. And I have been able to finally declare an extern MutableArray and access it from different Views. I have two views: 1) Testing View Controller 2) Test2 I declare the array as follows: TestingViewController.h extern NSMutableArray *myArray; #import <UIKit/UIKit.h> @interface TestingVie...

iPhone SDK Zoom/Resize Image with 2 fingers!! HELP

Help, i need to make an app that has got some images and you need to resize them on the screen!! But how can i resize them with 2 finger dragging? Help me please! Thanks ...

How to show directions to neares places from current location using MKMapView

I am new to using MapKit on iPhone. On Google Maps, I have a current location and push pins to indicate nearest places around current location. (The co-ordinates of all are hard-coded as on now). Now, How to do the following: 1. Display a green arrow (right/left arrow) pointing to the nearest push pin location from current location? 2....

Invoke a method from a different view controller. iPhone SDK

So I have an application with two view controllers one is the main controller that launches when the app launches. This view controller Has two buttons on opens a uiwebview to google.com the other opens that same uiwebview but loads a different page. How can I change the nsurl that is loaded in the other view controller from the origina...

NSClassFromString(@"MPMoviePlayerViewController") returns non nil EVEN on 3.1.3 (iPhone)

How can this Possibly return non-nil on iPhone 3.1.3 (3g iPhone)? - (BOOL) isIOS3_2OrAbove { Class mplayerControllerClass = NSClassFromString(@"MPMoviePlayerViewController"); if(mplayerControllerClass != nil) { NSLog(@"MPMoviePlayerViewController not showing NIL! It is: %@\n",[mplayerControllerClass description]); return YES; ...

How can i share a NSString between classes

Is there anyway that i can define an NSString. Inside of one class then access its value inside of another class? ...

make return button on keyboard perform an action.

I have a searchbox. I want to make it so when the user pushes search on there keyboard it performs and IBAction. How can i link that key to the -(IBAction)Method. ...

Make cancel button lower keyboard

I have a UISearchBar. I enabled the 'cancel' button so it says cancel right next to the search box how can i set that button to simply lower the keyboard when the user presses it? ...

Android SDK add-on

Can anyone share some details of devloping new SDK add-on like the one Google map API? I do not find any detials on how to build new sdk add-on? Is that good approach to have sdk add-on for connecting to twitter, facebook, youtube applications? I mean the library would contain the methods to access the developer APIs supported by the so...

iPhone sdk for OSX 10.4

On the apple website I can only see offered the iPhone sdk4 which indicates it will only operate on OSX10.6/Snow Leopard. Is this the case? And if so, where can I get the previous sdks so that I can work on my computer with OSX10.4? ...

CPSchedulePowerUpAtDate on iOS iPhone SDK 4.0?

Hi! what's the equivalent of CPSchedulePowerUpAtDate on the iOS 4.0? In iPhone OS 3.1.3 I could use it. I'm getting this error: dyld: lazy symbol binding failed: Symbol not found: _CPSchedulePowerUpAtDate Referenced from: /Applications/AppABC.app/AppABC Expected in: /System/Library/PrivateFrameworks/AppSupport.framework/App...

Setting up Android SDK with Netbeans or Visual Studio?

I'd like to set up Android SDK with Netbeans or Visual Studio 2010. I am coming back to Windows programming after 3 months on Apple iMac (for iPhone programming). Would somebody be able to explain how to set up the NetBeans environment so I can compile and test Android Apps directly form NetBeans. I will be testing on a simulator, not...

How to get music files of iphone using itunes sdk?

i'm researching to get music files in iphone. i think i can get it using itunes sdk into PC based on windows, but i don't find a solution in sdk's document. i can get playlists and music file's locations using sdk. is it possible to get music and video files in iphone using itunes sdk? ...