i'm participating in the iPhone Developer Program and i have access to the iPhone 3.0 firmware and SDK.
one of the new features of the iPhone 3.0 -- is ability to use Bluetooth, but i can't find any documentation about it.
can someone point me please -- where is it?
...
I want to look at sample code for the Wlan API (MSDN link).
But C:\Program Files\Microsoft SDKs\Windows\<version number>\Samples\ doesn't exist for me. The only directories there are:
bin
Bootstrapper
FXCop
Include
Lib
I got my SDK (v7.0A) by installing the Visual Studio 2010 beta. OS is Windows Vista.
...
Although the searched FQDN appears in etc\hosts file.
Any idea?
Thanks a lot!
...
Hello, I have been trying to animate using an NSTimer and I've set up my code like this:
- (IBAction)startClick:(id)sender{
animationTimer = [NSTimer scheduledTimerWithTimeInterval:(.1/25.0) target:self selector:@selector(tick) userInfo:nil repeats:YES];
}
- (void)tick{
[self animatePig];
}
- (void)animatePig{
UIImage *pig...
How do I remove an App ID from the developer program portal area? I mistakenly added a couple of app id's under the wrong login and would like to remove them, but I am not seeing a way to do so.
Any help would be appreciated!
...
Did Apple change anything about the MPMoviePlayerController class on the iPhone 3.0 SDK? My app no longer pops up a video when I tap the correct button, no error popup or anything.
...
Is it possible to use the:
[NSMutableArray writeToURL:(NSString *)path atomically:(BOOL)AuxSomething];
In order to send a file (NSMutableArray) XML file to a url, and update the url to contain that file?
for example:
I have an array and I want to upload it to a specific URL and the next time the app launches I want to download tha...
Hi all,
I am using sharepoint based plugin that has an SDK, the SDK is installed as part of the plugin on the Sharepoint server, the SDK documentation mentions the assembly sharepoint.eplugin.dll, I couldn't find this file anywhere but I've been told everything I need is in the c:\windows\assembly folder, I've not come across this befor...
hi,
Is there a way to get all groups from the AddressBook belonging to a person without looping through all groups?
thanks
...
im animating an 89 frame png sequence, that has been cut down to half by putting two frames per 512 x 512 frame. but im having major image qaulity issues (lossy)
does anyone know of a good way to animate an 89 frame animation, without losing quality or chugging the processor?
all the best.
...
I am currently experimenting with the Expression Encoder SDK, but I find it very confusing to use when it comes to live streaming. I am trying to capture a video stream from a webcam, encode with my program and then publish it as a live stream from my computer while also injecting script commands. I've been looking through the SDK but I ...
I'm was running an iPhone application I'm working on through the Object Allocations performance tool, and I've noticed that "GeneralBlock-0 has a large (constantly growing) number of net allocations. Even so, the net and overall bytes for this group is consistently zero.
Is this normal or does it indicate some a leak or memory manageme...
Hi
As the title suggests I'm having a problem compiling MFC based applications, this problem started immediately after installing the windows server 2003 platform SDK and now even when I try to compile a new MFC project I get the following errors:
c:\program files\microsoft platform
sdk\include\zmouse.h(141) : error
C2146: synta...
I know that most people have DirectX9-capable cards but is it really necessary to install the DirectX9 SDK in order to develop DX9 apps or is it possible to do it using the latest DX SDK?
...
Hi,
is there a way to read the label of non multivalue properties? For multivalue properties this is very convenient as I don't have to care about localization... but what about birthday label ?
...
What are the changes for programmatically accessing Office 2010 documents (a.k.a Office 14)?
...
I have buttons laid out diagonally with their image frames as shown in the picture below. How can I alter the corner points so the buttons don't significantly overlap?
I know I could just create a rectangular UIButton and rotate it, but I may eventually need custom-shaped buttons anyway. Also, my button images are essentially text wit...
Hmmmm...
It appears that charts are only available through the Flex SDK that comes built-in with Flex Builder. This is a problem, since I want to use Flex 3.3, and Flex Builder came with 3.2.
Eclipse is also ticking me off, and I prefer to use a different IDE (FlashDevelop).
Any way around this? And is there anything else that isn't in...
The iPhone SDK 3.0 has been in beta for a few months, so I would think that by now there would be some good reference/tutorial material floating around in the form of e-books (it may be a little too early for print books).
So far, I only came across iPhone SDK Development from The Pragmatic Bookshelf. It covers the SDK up to version 3....
Hi, I'm using the code provided below to display time and date. can anyone help me with atuomatically changing the time by seconds and the date by the day?
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"yyyy-MM-dd"];
NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat set...