term.h not found for iPhone SDK

2010-08-12 Thread Paresh Thakor
Hi, This is gonna be my first break out with mailing list, please welcome me. I'm trying to implement terminal like application with libssh2 library. I got connection and everything is working fine, but i need to process the output manually and need to display it on UIView. To display the

Re: term.h not found for iPhone SDK

2010-08-12 Thread Fritz Anderson
On 12 Aug 2010, at 2:39 AM, Paresh Thakor wrote: Can anyone please let me know any other alternative for term.h? When i build the application using device, i got lots of errors, basically first error is term.h not found. Can anyone please suggest me something? Any better idea? I have to

Reg: Image editing using iPhone SDK

2009-12-16 Thread Sravanthi
Hi, Is it possible to do image editing like Washout the background of the image using iPhone SDK? if so please update me. if not what are the alternative ways to achieve this. Any help is greatly appreciated. Thanks in advance, Sravanthi

Re: Reg: Image editing using iPhone SDK

2009-12-16 Thread Matthew Lindfield Seager
On Wednesday, December 16, 2009, Sravanthi sravanthi.emm...@prithvisolutions.com wrote: Is it possible to do image editing... snip ...using iPhone SDK? Yes. What have you tried? (http://WhatHaveYouTried.com) ___ Cocoa-dev mailing list (Cocoa-dev

String attributes in the iPhone SDK

2009-12-10 Thread Charlie Dickman
how to accomplish the same thing in the iPhone SDK. Can anybody help me? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact

Re: String attributes in the iPhone SDK

2009-12-10 Thread Greg Parker
/ 2.; I'm tearing my hair out trying to figure out how to accomplish the same thing in the iPhone SDK. Can anybody help me? First, get a UIFont representing the font you want. http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIFont_Class/Reference/Reference.html

Very, Very Simple iPhone SDK Question

2009-11-06 Thread Patrick William Walker
Why do I get an Expected specified-qualifier-list before NSPoint when trying to port of my model classes from Cocoa to iPhone SDK? I've been reading through the documentation and haven't really found much to explain why I'm getting errors when using other things like NSRect

Re: Very, Very Simple iPhone SDK Question

2009-11-06 Thread Karolis Ramanauskas
an Expected specified-qualifier-list before NSPoint when trying to port of my model classes from Cocoa to iPhone SDK? I've been reading through the documentation and haven't really found much to explain why I'm getting errors when using other things like NSRect and NSBezierPaths as well. #import

Re: The iPhone SDK OpenGL ES Application template

2009-07-22 Thread Wilson Chen
Thank you David for the tip! On Wed, Jul 22, 2009 at 5:11 AM, David Duncan david.dun...@apple.comwrote: On Jul 21, 2009, at 10:18 AM, Wilson Chen wrote: My question is: since an EAGLView is a subclass of UIView, is there a particular reason for the template to not follow the common pattern

The iPhone SDK OpenGL ES Application template

2009-07-21 Thread Wilson Chen
Hi all, For a typical iPhone application, after the application is finished launching, the app delegate would then 1) create an instance of UIViewController; 2) ask the view controller for its view which the controller creates on demand; 3) add the view as a subview of the window. I really like

Re: The iPhone SDK OpenGL ES Application template

2009-07-21 Thread Kyle Sluder
On Tue, Jul 21, 2009 at 10:18 AM, Wilson Chencanti.m...@gmail.com wrote: My question is: since an EAGLView is a subclass of UIView, is there a particular reason for the template to not follow the common pattern to adhere the beloved MVC? Speed? If you're using OpenGL, you're probably

Re: The iPhone SDK OpenGL ES Application template

2009-07-21 Thread David Duncan
On Jul 21, 2009, at 10:18 AM, Wilson Chen wrote: My question is: since an EAGLView is a subclass of UIView, is there a particular reason for the template to not follow the common pattern to adhere the beloved MVC? There is really no difference in if you want to have the view controller or

Re: The iPhone SDK OpenGL ES Application template

2009-07-21 Thread Alexander Spohr
Am 21.07.2009 um 21:11 schrieb David Duncan: There is really no difference in if you want to have the view controller or not. About the only thing to keep in mind is that if you do use a view controller, don't use the orientation change support. Could you please elaborate on this? I am

Re: The iPhone SDK OpenGL ES Application template

2009-07-21 Thread David Duncan
On Jul 21, 2009, at 2:01 PM, Alexander Spohr wrote: I am very interested to know - why it should be faster to do it in OpenGL If you use the built in orientation support, then we place a transform on the view's layer. A transform on OpenGL content will force your rendering onto a slower

iPhone sdk 3.0 - MKMapView linker error

2009-07-12 Thread sathish kumar
Hi, I have upgraded my iphone sdk from 2.2.1 to 3.0. I downloaded a sample code for MapKit and was able to run it successfully. But when I tried to write my own program I faced linker errors. The error is not thrown when I import MapKit/MapKit.h or when I declare a variable as MKMapView

Re: iphone SDK session duration

2009-04-29 Thread Bess Ho
luket...@apple.comwrote: Sounds like you've already answered your question. Luke On Apr 21, 2009, at 4:00 PM, Bess Ho wrote: Is this appropriate mailing list to ask iphone SDK questions? How do you measure session duration on a utility application with 3 ViewControllers? Use NSDate

Re: iphone SDK session duration

2009-04-29 Thread Alexander Spohr
Luke already told you six hours before your post: Am 29.04.2009 um 02:10 schrieb Bess Ho: *** -[NSObject timeIntervalSinceReferenceDate]: unrecognized selector sent to instance 0x521fe0 2009-04-28 17:07:32.283 sessiontime[22584:20b] CoreAnimation: ignoring exception: *** -[NSObject

Re: iphone SDK session duration

2009-04-29 Thread Bess Ho
I did reply. Moderator on this list rejected because my reply is too long. I was about to report the results. I get it to work. I open source the Xcode project code on google project if anyone want it. On Wed, Apr 29, 2009 at 12:57 AM, Alexander Spohr a...@freeport.de wrote: Luke already told

Re: iphone SDK session duration

2009-04-28 Thread Luke the Hiesterman
On Apr 21, 2009, at 4:00 PM, Bess Ho wrote: Is this appropriate mailing list to ask iphone SDK questions? How do you measure session duration on a utility application with 3 ViewControllers? Use NSDate to mark the starting and ending the session and print the time lapsed on NSLog. -- Bess Ho

Re: iphone SDK session duration

2009-04-22 Thread Luke the Hiesterman
. On Tue, Apr 21, 2009 at 6:47 PM, Luke the Hiesterman luket...@apple.com wrote: Sounds like you've already answered your question. Luke On Apr 21, 2009, at 4:00 PM, Bess Ho wrote: Is this appropriate mailing list to ask iphone SDK questions? How do you measure session duration on a utility

iphone SDK session duration

2009-04-21 Thread Bess Ho
Is this appropriate mailing list to ask iphone SDK questions? How do you measure session duration on a utility application with 3 ViewControllers? Use NSDate to mark the starting and ending the session and print the time lapsed on NSLog. -- Bess Ho

Re: iphone SDK session duration

2009-04-21 Thread Luke the Hiesterman
Sounds like you've already answered your question. Luke On Apr 21, 2009, at 4:00 PM, Bess Ho wrote: Is this appropriate mailing list to ask iphone SDK questions? How do you measure session duration on a utility application with 3 ViewControllers? Use NSDate to mark the starting and ending

Re: iphone SDK session duration

2009-04-21 Thread Seth Willits
On Apr 21, 2009, at 4:00 PM, Bess Ho wrote: Is this appropriate mailing list to ask iphone SDK questions? How do you measure session duration on a utility application with 3 ViewControllers? Session being how long your app is running? Use the UIApplication delegate methods to know when

3 iPhone SDK Questions

2009-04-15 Thread Steve Cronin
Folks; I haven't stuck my toe in the iPhone water yet. I know I could find the answers to these by digging but I've been asked to find out the answers quickly... 1) Does the iPhone support the Cocoa AddressBook.framework? If so, do the AB change notifications also work? 2) We believe

Re: 3 iPhone SDK Questions

2009-04-15 Thread Luke the Hiesterman
On Apr 15, 2009, at 12:54 PM, Steve Cronin wrote: Folks; I haven't stuck my toe in the iPhone water yet. I know I could find the answers to these by digging but I've been asked to find out the answers quickly... 1) Does the iPhone support the Cocoa AddressBook.framework? If so, do the

Re: 3 iPhone SDK Questions

2009-04-15 Thread Kyle Sluder
On Wed, Apr 15, 2009 at 3:54 PM, Steve Cronin steve_cro...@mac.com wrote: 1) Does the iPhone support the Cocoa AddressBook.framework?  If so, do the AB change notifications also work? Address Book is a C API on iPhone.

Re: 3 iPhone SDK Questions

2009-04-15 Thread Luke the Hiesterman
On Apr 15, 2009, at 1:04 PM, Kyle Sluder wrote: 2) We believe that the iPhone does NOT support AppleScript, is there any inter-application communication mechanism? You can still use sockets and pipes. This assumes that you could have another application running simultaneously, which

Re: 3 iPhone SDK Questions

2009-04-15 Thread Greg Guerin
Kyle Sluder wrote: You can still use sockets and pipes. Only if you can keep both apps running at the same time, or have some kind of longer-lived shared intermediary. I think the OP needs to clarify exactly what is expected from an inter-application communication mechanism. The

Re: 3 iPhone SDK Questions

2009-04-15 Thread Kyle Sluder
This assumes that you could have another application running simultaneously, which you cannot. Yeah that's me being stupid. The functionality still exists, however, if you need to communicate with an external entity over the network. --Kyle Sluder

Re: 3 iPhone SDK Questions

2009-04-15 Thread Dave Camp
On Apr 15, 2009, at 12:54 PM, Steve Cronin wrote: I haven't stuck my toe in the iPhone water yet. I know I could find the answers to these by digging but I've been asked to find out the answers quickly... 1) Does the iPhone support the Cocoa AddressBook.framework? If so, do the AB change

Re: Do synthesized instance variables work in iPhone SDK?

2009-03-25 Thread Bill Bumgarner
On Mar 24, 2009, at 2:36 PM, Eric Hermanson wrote: I was under the impression the iPhone ran the modern (64-bit) Objective-C runtime. I'm using xCode 3.x and iPhone SDK 2.2. Are synthesized instance variables not supported, or do I need to change some xCode/project configuration settings

Do synthesized instance variables work in iPhone SDK?

2009-03-24 Thread Eric Hermanson
3.x and iPhone SDK 2.2. Are synthesized instance variables not supported, or do I need to change some xCode/project configuration settings to activate this support (I'd really like to use it)? Does the fact that I'm linking to the Sen Test Kit Framework, or running on a relatively old

Re: Do synthesized instance variables work in iPhone SDK?

2009-03-24 Thread Dave DeLong
properties to synthesize not only the accessor methods, but also the instance variable. I ended up with an error saying something like ...must explicitly name an ivar I was under the impression the iPhone ran the modern (64-bit) Objective-C runtime. I'm using xCode 3.x and iPhone SDK 2.2

MEETING: CocoaHeads Nov 13: Intro to iPhone SDK

2008-11-11 Thread j o a r
As announced on Theocacao: http://theocacao.com/document.page/597 = Michael Jurewitz, Apple's Developer and Performance Tools Evangelist, will presentIntroduction to iPhone Development at CocoaHeads Silicon Valley this Thursday, November 13 at 7:00pm. This meeting will be at

Xcode 3.1 (iphone SDK version) breaks my Core Data app

2008-11-07 Thread Steve Steinitz
Hello, I have a Core Data application that worked well when built from Xcode 3.0. I updated to the iphone SDK version of Xcode 3.1 and now the app no longer works. It won't open the production database but will open a small, testing database. When the app starts up it gives the following

Re: Xcode 3.1 (iphone SDK version) breaks my Core Data app

2008-11-07 Thread Nick Zitzmann
On Nov 7, 2008, at 10:28 PM, Steve Steinitz wrote: When I attempt to load the large production database it uses a lot of CPU for a while and then finally fails with this: Attempt to allocate 4194304 bytes for NS/CFDictionary failed 1 _NSOutOfMemoryErrorHandler (in Foundation) +

Re: Xcode 3.1 (iphone SDK version) breaks my Core Data app

2008-11-07 Thread j o a r
On Nov 7, 2008, at 9:28 PM, Steve Steinitz wrote: When the app starts up it gives the following (not sure if its a problem, I've just never seen it before): GuardMalloc: Allocations will be placed on 16 byte boundaries. GuardMalloc: - Some buffer overruns may not be noticed.

Re: Xcode 3.1 (iphone SDK version) breaks my Core Data app

2008-11-07 Thread Rob Keniger
On 08/11/2008, at 3:28 PM, Steve Steinitz wrote: I have a Core Data application that worked well when built from Xcode 3.0. I updated to the iphone SDK version of Xcode 3.1 and now the app no longer works. It won't open the production database but will open a small, testing database. When

Re: Xcode 3.1 (iphone SDK version) breaks my Core Data app

2008-11-07 Thread Steve Steinitz
worth mentioning that I didn't enable Guard Malloc (I don't think). It seemed to be enabled by default in the iPhone SDK version of Xcode 3.1. That's a hard one to google for. Thanks again, Steve tags: Xcode 3.1 application performance, Xcode 3.1 application runs slowly, xcode 3.1 slow

[Moderator] Please hold off on iPhone SDK discussions until the rules are clarified later today

2008-10-01 Thread CocoaDev Admins
For those of you who have seen http://developer.apple.com/iphone/program We have decided to drop the non-disclosure agreement (NDA) for released iPhone software. We put the NDA in place because the iPhone OS includes many Apple inventions and innovations that we would like to protect, so

Re: [Moderator] Please hold off on iPhone SDK discussions until the rules are clarified later today

2008-10-01 Thread James
Quick question, what do they mean by Released and Unreleased software (just want the terminology correct). Thanks, james On Oct 1, 2008, at 12:44 PM, CocoaDev Admins wrote: For those of you who have seen http://developer.apple.com/iphone/program We have decided to drop the

Re: [Moderator] Please hold off on iPhone SDK discussions until the rules are clarified later today

2008-10-01 Thread CocoaDev Admins
That is one of the things I'm going to be clarifying. for now, just wait to talk about anything on the list. On 1-Oct-08, at 12:47 PM, James wrote: Quick question, what do they mean by Released and Unreleased software (just want the terminology correct). Thanks, james On Oct 1, 2008, at

Re: [Moderator] Please hold off on iPhone SDK discussions until the rules are clarified later today

2008-10-01 Thread CocoaDev Admins
As I said, I'll post clarification information as soon as I can get it. In the meantime, rejoice, but please don't slam 8000 users with yes! messages. Scott [moderator] On 1-Oct-08, at 12:47 PM, James wrote: Quick question, what do they mean by Released and Unreleased software (just

Re: [Moderator] Please hold off on iPhone SDK discussions until the rules are clarified later today

2008-10-01 Thread Brian Stern
On Oct 1, 2008, at 12:47 PM, James wrote: Quick question, what do they mean by Released and Unreleased software (just want the terminology correct). While I'm not a lawyer I read those sentences several times also. What I believe it means is that released versions of the iPhone OS are

Re: [Moderator] Please hold off on iPhone SDK discussions until the rules are clarified later today

2008-10-01 Thread dreamcat7
Hmmm, No iPhone - specific functionality to be discussed yet. But obviously one important question to asking: How to partition the lists? I hope that our existing CocoaDev moderater(s) will be given fully the responsibility for such task and enough leeway to make their own decision about

Re: [Moderator] Please hold off on iPhone SDK discussions until the rules are clarified later today

2008-10-01 Thread Nathan
I think both should be in one mailing list, for simplicity, the fact that both topics overlap a lot, and because the more, the more likely to get an answer. Nate On Oct 1, 2008, at 1:38 PM, dreamcat7 [EMAIL PROTECTED] wrote: Hmmm, No iPhone - specific functionality to be discussed yet.

iPhone SDK

2008-09-18 Thread Waqar Azeem
In last March I downloaded the iPhone SDK 2.09 GB in size. And now today I downloaded the latest version of this SDK i.e. iphone_sdk_for_iphone_os_2.1__final but this time the file size is 1.38 GB. Where are the remaining 600 MBs [- Or -] XCode other development stuff are already

Re: iPhone SDK

2008-09-18 Thread Roland King
unfortunately you can't ask questions about iPhone SDK here, even if they seem innocuous. In general if I download something and it works fine I don't worry too much about it, I know that generic XCode releases are all sorts of sizes. Waqar Azeem wrote: In last March I downloaded the iPhone

[Moderator] Re: iPhone SDK

2008-09-18 Thread Scott Anguish
iPhone SDK -- Until an announcement is made otherwise, developers should be aware that the iPhone SDK is still under non-disclosure (section 5.3 of the iPhone Development Agreement). It can't be discussed here, or anywhere publicly. This includes other mailing lists, forums

Re: [Moderator] Re: iphone SDK questions

2008-08-28 Thread Bob Sabiston
. um...thanks? scott [moderator] On 27-Aug-08, at 7:30 PM, Bob Sabiston wrote: What's the deal with the iphone SDK talk? Ask a question here and you get shut down. But talk is all over the discussion groups on Apple's own site. For example, http://discussions.apple.com/thread.jspa

Re: [Moderator] Re: iphone SDK questions

2008-08-28 Thread Eric Gorr
On Aug 28, 2008, at 4:04 PM, Bob Sabiston wrote: On Aug 27, 2008, at 8:30 PM, CocoaDev Admins wrote: I've been given explicit instructions to enforce the non-disclosure agreement when moderating this list. So that's what I do. The admins in the discussions groups should be following the

[Moderator] Re: iphone SDK questions

2008-08-28 Thread Scott Anguish
thanks for you comments and understanding, but please direct them off- list rather than to cocoa-dev. scott [moderator[ ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list.

Re: [Moderator] Re: iphone SDK questions

2008-08-28 Thread Robert Claeson
On 28 Aug 2008, at 22:15, Eric Gorr wrote: On Aug 28, 2008, at 4:04 PM, Bob Sabiston wrote: On Aug 27, 2008, at 8:30 PM, CocoaDev Admins wrote: I've been given explicit instructions to enforce the non- disclosure agreement when moderating this list. So that's what I do. The admins in

iphone SDK questions

2008-08-27 Thread Bob Sabiston
What's the deal with the iphone SDK talk? Ask a question here and you get shut down. But talk is all over the discussion groups on Apple's own site. For example, http://discussions.apple.com/thread.jspa?threadID=1443702tstart=180 So why is this list any different? Bob

Re: iphone SDK questions

2008-08-27 Thread Shawn Erickson
On Wed, Aug 27, 2008 at 4:30 PM, Bob Sabiston [EMAIL PROTECTED] wrote: What's the deal with the iphone SDK talk? Ask a question here and you get shut down. But talk is all over the discussion groups on Apple's own site. For example, http://discussions.apple.com/thread.jspa?threadID

[Moderator] Re: iphone SDK questions

2008-08-27 Thread CocoaDev Admins
Sabiston wrote: What's the deal with the iphone SDK talk? Ask a question here and you get shut down. But talk is all over the discussion groups on Apple's own site. For example, http://discussions.apple.com/thread.jspa?threadID=1443702tstart=180 So why is this list any different

Re: [Moderator] Re: iphone SDK questions

2008-08-27 Thread James
: What's the deal with the iphone SDK talk? Ask a question here and you get shut down. But talk is all over the discussion groups on Apple's own site. For example, http://discussions.apple.com/thread.jspa?threadID=1443702tstart=180 So why is this list any different

Re: [Moderator] Re: iphone SDK questions

2008-08-27 Thread Scott Anguish
be following the same rules, and I've passed along the information. scott [moderator] On 27-Aug-08, at 7:30 PM, Bob Sabiston wrote: What's the deal with the iphone SDK talk? Ask a question here and you get shut down. But talk is all over the discussion groups on Apple's own site

[Moderator] - List Guidelines and iPhone SDK NDA status

2008-08-04 Thread CocoaDev Admins
be delayed. Sorry for the inconvenience. iPhone SDK -- Until an announcement is made otherwise, developers should be aware that the iPhone SDK is still under non-disclosure (section 5.3 of the iPhone Development Agreement). It can't be discussed here, or anywhere publicly

[Moderator] iPhone SDK still in effect

2008-07-28 Thread CocoaDev Admins
iPhone SDK -- Until an announcement is made otherwise, developers should be aware that the iPhone SDK is still under non-disclosure (section 5.3 of the iPhone Development Agreement). It can't be discussed here, or anywhere publicly. This includes other mailing lists, forums

[Moderator] No iPhone SDK/development discussion here!!! Re: MoveMe gone?

2008-07-18 Thread Scott Anguish
iPhone SDK -- Until an announcement is made otherwise, developers should be aware that the iPhone SDK is still under non-disclosure (section 5.3 of the iPhone Development Agreement). It can't be discussed here, or anywhere publicly. This includes other mailing lists, forums

[Moderator] iPhone SDK is still under NDA - Do not discuss here

2008-07-16 Thread Cocoa-Dev Admins
iPhone SDK -- Until an announcement is made otherwise, developers should be aware that the iPhone SDK is still under non-disclosure (section 5.3 of the iPhone Development Agreement). It can't be discussed here, or anywhere publicly. This includes other mailing lists, forums

[Moderator] iPhone SDK is still under NDA - Do not discuss openly.

2008-07-10 Thread Cocoa Dev Admins
Until an announcement is made otherwise, developers should be aware that the iPhone SDK is still under non-disclosure. It can't be discussed here, or anywhere publicly. This includes other mailing lists, forums, and definitely blogs. This situation is somewhat different than a Mac OS X

iPhone SDK and sms.db file

2008-07-08 Thread aletemp2002-mail
Hello, I hope this is the right mailing list, because I couldn't find anything iPhone-related. I need to read the sms.db file (~/Library/SMS/sms.db). I need to put the content of the file into a NSData object, so I read the file using [NSData dataWithContentsOfFile: @~/Library/SMS/sms.db].

Re: iPhone SDK and sms.db file

2008-07-08 Thread lbland
(need?) the Xcode 3.1 toolset (an obviously iPhone SDK non-beta). But, also because I won't have to watch Scott moderate these emails. :-) thanks!- -lance ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

Re: iPhone SDK and sms.db file

2008-07-08 Thread I. Savant
On Tue, Jul 8, 2008 at 10:29 AM, [EMAIL PROTECTED] wrote: I hope this is the right mailing list, because I couldn't find anything iPhone-related. http://www.cocoabuilder.com/archive/message/cocoa/2008/6/27/211361 http://www.cocoabuilder.com/archive/message/cocoa/2008/6/27/211364

Re: iPhone SDK and sms.db file

2008-07-08 Thread Hamish Allan
On Tue, Jul 8, 2008 at 3:29 PM, [EMAIL PROTECTED] wrote: I hope this is the right mailing list, because I couldn't find anything iPhone-related. Just out of interest, what search terms did you use? Because it seems likely to me that searching for iphone would have given you a fairly

[Moderator] Re: iPhone SDK and sms.db file

2008-07-08 Thread Scott Anguish
On Jul 8, 2008, at 10:29 AM, [EMAIL PROTECTED] wrote: Hello, I hope this is the right mailing list, because I couldn't find anything iPhone-related. Unfortunately, it isn't. The non-disclosure prohibits discussion of the SDK in public. That includes this mailing list.

iPhone SDK build of default application fails

2008-06-15 Thread Edward Kenworthy
Hopefully someone can help me :) I've just downloaded and installed the iPhone SDk, run up Xcode, File- New and created several of the template applications. In each case I click Build Go... and nothing. The status bar says it's building but it spends forever building (doing nothing

[Moderator] Re: iPhone SDK build of default application fails

2008-06-15 Thread Scott Anguish
Discussion of the iPhone SDK is NOT allowed in public. From the list guidelines Discussing NDA Projects (Snow Leopard and iPhone OS) and Private API This list is not an appropriate forum for the discussion of issues

iPhone SDK List?

2008-05-15 Thread Rich Curtis
Been lurking on the list for a couple of days. Is there another list for iPhone SDK programmers? Doesn't seem to be much of that in this list. Am I in the wrong place for that sort of stuff? Thanks, RC ___ Cocoa-dev mailing list (Cocoa-dev

Re: iPhone SDK List?

2008-05-15 Thread Don Arnel
Unfortunately, no. The iPhone SDK is under NDA so it cannot be discussed at this time. On May 15, 2008, at 7:39 AM, Rich Curtis wrote: Been lurking on the list for a couple of days. Is there another list for iPhone SDK programmers? Doesn't seem to be much of that in this list. Am I

Re: iPhone SDK List?

2008-05-15 Thread Michael Vannorsdel
Currently NDA software from Apple is intended for you to quietly play with. No public or private forum exists for discussion on this SDK. On May 15, 2008, at 5:39 AM, Rich Curtis wrote: Been lurking on the list for a couple of days. Is there another list for iPhone SDK programmers

Re: iPhone SDK List?

2008-05-15 Thread Matt Gough
could remain here. Matt On 15 May 2008, at 13:39, Rich Curtis wrote: Been lurking on the list for a couple of days. Is there another list for iPhone SDK programmers? Doesn't seem to be much of that in this list. Am I in the wrong place for that sort of stuff

iPhone SDK and IB plug-in link error

2008-05-09 Thread Wayne Shao
Hi, After I installed SDK, I started to see link errors if my Cocoa application (in Xcode 3.1) uses either QTMovieView or Quartz Composer. e.g, One of the Quartz Composer sample code starts to fail. Another simple app with QTKit failed with error message: Description: Unable to resolve plug-in

iPhone SDK Question

2008-05-04 Thread Development
Well I'm not willing to switch to ATT for my cell, but I would like to develop for iPod and iPhone. I've been messing with the SDK and it seems fairly straight forward, however I am in love with my PPC and unwilling to give it up until Apple stops making OSes for it. Therefore I am

Re [Moderator] No iPhone SDK discussion here please

2008-03-19 Thread Andreas Gotfredsen
Hi Scott Big Questions here and I´m guesing I´m not the only one ... I´m using the iPhone SDK like 100.000 people do and what are the limitations ? In English I mean shorly I can talk about Cocoa in general when I have questions ? I have not talked about any iPhone API stuff but only Cocoa stuff

Re: [Moderator] No iPhone SDK discussion here please

2008-03-08 Thread mmalc crawford
On Mar 7, 2008, at 10:22 PM, Scott Anguish wrote: Items specifically discussed in the announcement are public. But even still, they're not appropriate for discussion on this list. Perhaps it's worth reminding all of http://bugreport.apple.com/ and the feedback forms at the bottom of the

iPhone SDK question

2008-03-07 Thread John Newlin
Ok, I realize this is not a Cocoa question, please don't flog me. Hopefully they'll make an iPhone mailing list.. Anyhow, has anyone been able to run an app on a device yet, I get an error message when I try to load my app onto the phone. The simulator works fine. Thanks, -john

MEETING: Chicago CocoaHeads/CAWUG - iPhone SDK (duh! what else this month)

2008-03-07 Thread Bob Frank
and development questions. Also, if Apple's servers have caught up, be sure to sign up and download the latest tools and the iPhone SDK from http://developer.apple.com/ - O'Tooles We will continue the discussion at our local watering hold Timothy O'Toole's at 622 Fairbanks (2 blocks east of the store

Re: MEETING: Chicago CocoaHeads/CAWUG - iPhone SDK (duh! what else this month)

2008-03-07 Thread Bob Frank
. So bring your iPhones and development questions. Also, if Apple's servers have caught up, be sure to sign up and download the latest tools and the iPhone SDK from http://developer.apple.com/ - O'Tooles We will continue the discussion at our local watering hold Timothy O'Toole's