127 Topics

Member Avatar for
Member Avatar for Doogledude123

Hey People of DaniWeb! I have a question for you! What would you think about having the Mobile Section split up? An Example: OLD: Mobile Development > A bunch of un organized threads. NEW: Mobile Development > iOS > All iOS threads IN HERE > Windows Phone > All Windows …

Member Avatar for ~s.o.s~
0
250
Member Avatar for green_ning
Member Avatar for green_ning

Hello guys. I am a starter in Java Programming. And I wanted to understand and manipulate it effectively from now on. I also want to start developing applications in iPad or iPhone but I am a Windows user, and I guess I need a Mac in able to do that. …

Member Avatar for green_ning
0
262
Member Avatar for happygeek

The results from what is claimed to be the most comprehensive global online job trends survey, the 'Fast 50' Q2 2012 report took data from 190,000 online job postings as an indicator of the global online employment economy. Some of the findings are surprising to say the least, such as …

Member Avatar for justinbob
0
686
Member Avatar for happygeek

![bomb021](/attachments/small/0/bomb021.jpg "align-right") "There are bombs littered all over the city and your job is to stop them from exploding" that's the premise of Bomb Disposal Unit 54, a new game that I have been playing on my iPad before it's official release in the App Store on 6th May. When …

Member Avatar for Daniel Jones
0
237
Member Avatar for limeramen22

Hi. So I have a website (SNIP) and I am setting up a phpBB forum (or something else). But......I'm going mobile-style! Is there anyway I can make it so anytime a new post comes up (assuming the person is on the website), the person gets a push notification or something? …

Member Avatar for Daniel Jones
0
156
Member Avatar for Perigee

**Appcelerator releases Titanium 2.0 with suite of mobile cloud services.** On April 17th, 2012, Appcelerator took the wraps off of the latest release of their flagship product Titanium 2.0. This major point release of the seminal cross-platform mobile development environment brings with it a new suite of ready-to-use 'Instant Mobile …

0
237
Member Avatar for Nfurman

Hello guys, There's some issue with my UIPickerView controller. The data won't pop up in it. The 'Drum' by itself is visible but empty. My code is: - (void)viewDidLoad { [[self navigationController]setToolbarHidden:YES animated:YES]; [self setItemShow:theItem]; self.uiPickerViewData=[[[NSMutableArray alloc]initWithObjects:@"One",@"Two", nil]autorelease]; [super viewDidLoad]; } And method which will work when button is getting …

Member Avatar for scottdurica
0
1K
Member Avatar for 9tontruck

C programming in IOS? Hi, I am implementing an image editing program in C which should work both in Windows, IOS (iDevices). Ths point is that we do not want to re-write same code in Object-C or Xcode. Let's say that we have a C program that is just resizing …

Member Avatar for 9tontruck
0
279
Member Avatar for Ribamar23

Hi all I want to begin developing apps to android and IOS (mainly android) after trying the mobile by conduit platform to create a app, I want to go further in developing apps.... and not be attached to a web service like the one provided by conduit. I downloaded and …

Member Avatar for peter_budo
0
193
Member Avatar for Legomani
Member Avatar for ilaunchpad

The app I'm currently working on is suppose to overlay a square image. The square image should overlay on preview camera screen wherever the user touches the screen. And it should also appear on the image captured by the user. I'm having hard time figuring this out. Guidance would be …

0
138
Member Avatar for ilaunchpad

I'm trying to make a camera app using AVCaptureSession. For now I just want to see if the video input works or not. But it looks like there is no input and I can't seem to understand why. - (void)viewDidLoad { [super viewDidLoad]; session = [[AVCaptureSession alloc] init]; [self addVideoPreviewLayer]; …

0
116
Member Avatar for VengefulToast

Sorry for the newbie question, but I was just wondering if it is possible to program in C++ or some language other than Objective-C on iOS devices? If so, what tools could I use? Visual Studio? Thanks!! :)

Member Avatar for VengefulToast
0
111
Member Avatar for MadSkyrim

I have the following html file [CODE]<!DOCTYPE hmtl> <html> <head> <title> Minimum Spec Test </title> <script src="Compatability.js"></script> <script type="text/javascript"> var can, ctx; var img = new Image(); function Init() { can = document.getElementById('canvas'); can.width = 100; can.height = 400; ctx = can.getContext('2d'); img.src = 'Images/_test.bmp'; ctx.drawImage(img, 0, 0); } </script> …

Member Avatar for phoenix_2000
0
270
Member Avatar for happygeek

[ATTACH=RIGHT]22271[/ATTACH]It's official: Android now has a greater market share than iPhone across the EU5 countries of France, Germany, Italy, Spain and the UK. According to newly published data from the [URL="http://www.comscore.com/Products_Services/Product_Index/MobiLens"]comScore MobiLens service[/URL], nearly one in four smartphone users in the EU5 region were using smartphones running on a Google …

Member Avatar for Swordstech
1
401
Member Avatar for happygeek

Apple has been holding a highly unusual press conference to clam fears about the iPhone 4 and the 'death grip' problems some users have experienced. Unfortunately, Steve Jobs seems to be in two minds about what message to get across. On the one hand he says there is no problem, …

Member Avatar for Johnw2738
0
833
Member Avatar for happygeek

With the release of iOS 5 to developers, Apple has signalled the arrival of the much awaited iPhone 5. But when can we expect to see it, and how will it be different to the iPhone? As usual, the Apple rumor mill has been churning out specs for many months …

Member Avatar for swebsitedesign
3
312
Member Avatar for happygeek

[ATTACH=RIGHT]21548[/ATTACH]Earlier this week a hacker group called Dev-Team launched a revamped website service that enables owners of the iPhone 4 and iPad 2 (amongst a myriad other iOS-powered devices) to jailbreak them in next to no time, for free, online. The [URL="http://blog.iphone-dev.org/post/890709355/the-return-of-jailbreakme-com"]JailBreakMe site exploits a vulnerability[/URL] with the way that …

Member Avatar for swebsitedesign
1
436
Member Avatar for seanooi

How do I authenticate a .aspx page in objective-c? I've googled and viewed countless results to no avail. I found something about NSURLCredentials but nothing helpful. Any pointers would be very much appreciated.

0
75
Member Avatar for Rickay

[CODE]int realX = winSize.width + (projectile.contentSize.width/2); float ratio = (float) offY / (float) offX; int realY = (realX * ratio) + projectile.position.y; CGPoint realDest = ccp(realX, realY); [_projectiles addObject:projectile]; projectile.tag = 2; [projectile runAction:[CCSequence actions: [CCMoveTo actionWithDuration:realMoveDuration position:realDest], [CCCallFuncN actionWithTarget:self selector:@selector(spriteMoveFinished:)], nil]];[/CODE] In this simple app, I am trying to …

0
123
Member Avatar for Rickay

[CODE]int realX = winSize.width + (projectile.contentSize.width/2); float ratio = (float) offY / (float) offX; int realY = (realX * ratio) + projectile.position.y; CGPoint realDest = ccp(realX, realY); [_projectiles addObject:projectile]; projectile.tag = 2; [projectile runAction:[CCSequence actions: [CCMoveTo actionWithDuration:realMoveDuration position:realDest], [CCCallFuncN actionWithTarget:self selector:@selector(spriteMoveFinished:)], nil]];[/CODE] In this simple app, I am trying to …

0
123
Member Avatar for Rickay

I have started dabbling in Objective-C for iOS developing. Is using the C forum of this website appropriate for questions regarding Objective-C? If not, what would the correct forum be? Thanks!

Member Avatar for Rickay
0
215
Member Avatar for VanessaRyan

A [URL="http://bit.ly/appcelerator_idc_q4_mobile_developer_report"]new survey[/URL] jointly conducted by Appcelerator® and International Data Corporation (IDC) released September 27, 2010 reveals Appcelerator Titanium developers favor Android over iOS in TVs and other devices.[ATTACH=right]17397[/ATTACH] Although the market shows that Apple currently leads in iPhone/iPad sales and popularity, the survey reveals that of the approximately 2,300 …

Member Avatar for peter_budo
0
483
Member Avatar for happygeek

News reports suggest that March has been a good month for lovers of, and developers for, the Android operating system in pretty much every regard. That good news comes at the expense of the Apple iPhone and iOS we are led to believe, which appears to be losing the fight …

Member Avatar for wtstalin88
2
794
Member Avatar for WASDted

[ATTACH=RIGHT]19552[/ATTACH]Hey folks, Apple has [URL="http://www.apple.com/ipad/"]launched the iPad 2[/URL] with some pretty cool improvements... The new pad gets: [LIST] [*]New Dual-core A5 processor = up to 9x faster performance, better graphics [*]New, thinner design = 33% thinner and 15% lighter [*]Two cameras (front and rear) = FaceTime, HD video shoots, Photos, …

Member Avatar for jingda
0
290
Member Avatar for Rickay

Hey people. Been having a problem when trying to use .gif files as images for sprites. When I try to use one, I get an error such as: [CODE]Documents/Code/Cocos2D/Cocos2D/Player.png: No such file or directory[/CODE] But in the code, I am calling for the picture "Player.gif" to be used, as you …

0
106
Member Avatar for hiddepolen

Hi, I have a piece of code, which gets a string of code from a webpage. It's the HTML source code, from which I want to make an array, in which I can find data the user will input. However, I need to extract all the useful information from the …

Member Avatar for Prabakar
0
199
Member Avatar for Progr4mmer

I'm wondering if its possible to program using xcode for ios(I pod touch, I phone, I pad) on windows?

Member Avatar for Progr4mmer
0
114
Member Avatar for happygeek

[ATTACH=right]15517[/ATTACH]If you cannot wait to get hold of the new iPhone 4, should you have been lucky enough to have successfully pre-ordered, then you could always upgrade your existing iPhone 3G/3GS to iOS 4 and get many of the same features. Be warned, though, the update itself is not without …

Member Avatar for jimywaugh
1
703

The End.