Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
That being the case, the class would be great for you! Please email me ASAP if you would like to attend.
[email]unity@ethervision.net[/email]
brendand;74299 said:Oh I'm not new to programming. Graduated from Computer Science in 1993. Been programm…
Brendan,
This class is really targeted at experienced programmers. Being new to game programming is fine. If you are new to programming period, this class would be a waste of your time and money.
What we are currently looking at:
Getting Started: How do I hook this all up?
Basic Setup
Unity Remote
Pushing the apps to the iPhone
Run example app on iPhone
Example Projects:
1) Tic Tac Toe
2) Marble Rolling game using accelerometer
3) …
Not that I am aware of. I am trying to organize this class because no real training is available. I am seeing people get functioning games on the iPhone with Unity but few of them seem to have mastery. The reviews are riddled with comments about …
UPDATE:
Texas State Technical College in Waco, Texas has generously extended the invitation to provide access to their wonderful and well-equipped facilities for this event.
We will have a comfortable classroom with a digital projector. I am work…
I will send via paypal (or payment method of choice) $300 US to the first person to email to me ( aaron at iDev2.com ) a program that can play back a sound with
I received 2 entries this evening. The first was approx 200ms, and the second was approx 100ms.
I ran the app on my iPod in release mode and moved a microphone close to my screen. I set my headphones close to the mic. I then started a sound reco…
Thank you!
Is this the type of information which will be included in your upcoming book?
Amazon.com: Beginning iPhone 2 SDK Development (Beginning): Dave Mark, Jeff LaMarche: Books
An experienced developer helped me out with this:
NSData * imageData = UIImagePNGRepresentation(image);
[imageData writeToFile:documentPath atomically:YES]; //saves the file to a temp file first
Thank you Jeff!
Is there any documentation that discusses the leaky nature of convenience methods? I have seen other people comment that convenience methods should be avoided but have not seen anything that supports the assertion.
I use
[[UIImageView alloc] i…
You must have something else wrong. Are slider1 and slider2 both of type UISlider?
I tried:
UISlider *slider1 = [[UISlider alloc] initWithFrame:CGRectMake(0,30,320,40)];
UISlider *slider2 = [[UISlider alloc] initWithFrame:CGRectMake(0,80,320,40)]…
Encouraging news for developers:
CHEESY APPS:
iMetronome : 17 downloads
iBlackout : 18 downloads
Flashlight (basically the same as iBlackout) : 73 downloads
handyRandy :0 downloads (I guess even excited consumers have their limits!)
For completeness, here is what I was seeing:
I have an app that has a splash screen that I destroy when it is no longer needed. The splashscreen is a UIView.
When I am done with the screen, I call my method to release the view
I call:
[splas…
I ran into this exact same problem. A very smart friend of mine told me
Even though you release objects the system may not flush them right away. They could flush it on the next event loop or they could cache them so if you need the image or an ob…
iPhoneGuy said:Where are you calling this from? I am using it with no problem in the loadView()
[textField becomeFirstResponder];
[self.view addSubview:textField];
TextField works fine for me as well. The problem I am having is when I try this …
2 books
Cocoa Programming for Mac OS - Third Edition
Aaron Hillegrass
http://www.amazon.com/Cocoa-Programming ... 143&sr=1-1
Programming in Objective-C
Stephen G. Kochan
http://www.amazon.com/Programming-Objec ... gy_b_img_b
sabedev said:thnks for ur reply actually what exactly i want is that I wish to display a tableview hierarchy upto certain depht and then some options have a view without a navigation view, with full screen.
I tried pushing on stack a controller for …
fusion777 said:ok i understand what you posted Fastrak but where should i put
contentView = [[MyView alloc] initWithFrame:CGRectMake(220.0, 15.0, 100.0, 100.0)];
thanks
Wherever you are creating your views. My guess as to your app:
A bunch of c…
The following code does what you want:
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]);
{
frontView =[[UIImageView alloc] initWithFrame:[self bounds]];
frontView.backgroundColor = [UIColor yellowColor];
[self…
I tried this out in one of my programs - if nil is returned, the cell is not selected BUT it does turn blue. tableViewdidSelect is not called on this cell.
Either add it to a UIImageView and set a rotation transform or, if you need it to stay a UIImage, you will need to drop down to core graphics to rotate it (or flip it)
Thank you. I was looking in the delegate methods of UITableView instead of the normal properties. I had better just print out the header files and stick them on my wall!!! My new rule: Study the complete .h file for the relevant component before…
I thought about determining if the touches were in the frame but it seemed like a lot of effort.
Its actually pretty straightforward.
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch;
touch=[touches anyObjec…