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.
Also depends on what the app is/does. Having an app that doesnt function without a subscription is a common thing with magazine apps, the mag app is a free download from the App Store, but you have to purchase magazines to do anything with the app. …
Just an update.. It turned out to be memory usage killing the device. I watched the app launch with instruments attached and the memory usage was climbing until the device reboots. I found the issue to be extremely rare, only happened once on my iPa…
Yes, Brian is right, I meant the time from when I received Apple notification of the app status changing to in review.
I have submitted over 20 apps in the past few months, generally i have 5-7 days from when I upload the app to when its approved. …
Thanks Duncan, ill give it a go.
I dont know if its related or not, but my app went into Apple Review over 15 hours ago. Ive submitted over 20 apps over the past few months, and at most ive had an app in review for a few hours, usually they are in …
I can see on bitbucket what the changes are, but I still cant find a way to choose what I pull. When Xcode has a conflict, I can choose what I want to pull into my code, but if there was no conflict it just pulls everything and I have no option to c…
Hi Duncan,
I have a view controller, and I create 3 views, and add them to viewcontroller.view
The views are a header view, a footer view, and a content view. If the view is supposed to have a header or footer, then the header or footer will be 4…
Sorry I mustn't have been clear enough, the HTML string needs to load in safari so the user can add the page to their home screen.
From what I suspect, it's not possible to pass a HTML string to safari, but I hope I'm wrong.
After studying some …
If an app is doing it, then it is obviously built for iOS 4.0 or older.
It can't be done with the latest iOS, so forget it.
I don't want apps messing with my screenshots anyway, so good thing Apple got rid of it.
Firstly, It can be done, Facebook P…
I have parts of various apps that require some views portrait and some landscape, and there are valid reasons for doing so.
One app the entire app can be either portrait or landscape, except one screen, its a form, and the pad must be landscape to…
I had a lot of issues with getting apps to rotate the way I want. such as I want all the view controllers in a navigation controller stack to be portrait, except an image gallery or video player view controller, I want those to be landscape. From wh…
by the way... am i doing something wrong, or is it just the new forum that is messy at displaying code? in all my posts since the new forum, the code is always messy to read
Thanks for that Duncan, sounds perfect, but i also want to support iOS 4.
Ive fixed it and everything runs great now.
Before these changes, I had a custom UIViewController that had all the code that was common to all screens in my app, such as th…
the idea of having 3 different views on each page is to have a header and footer on every page, the header and footer is the same on every page in the app, and the content is different for each page. my app doesnt use any nibs, only code. i want the…
Im totally confused.... today, just now i changed my segmented control back to a button and im having the exact same issue as the segmented control, it just crashes, even though yesterday with a button worked fine.
just to confirm my code is fine, …
yeah i know, when i changed one i changed both. The reason for using a segmented control with one segment is so i can apply a tint colour, in turn looking exactly the same as a rounded rect button with a tint colour. for some reason when i set the t…
ive tried both. I have no need for any parameters so i had it simple -(void)dialPhoneNumber, but i thought maybe the segmented control wants to send an object, so i changed it to -(void)dialPhoneNumber:(UISegmentedControl*)sender but that changed no…
Ok thanks, Ill just stick with PList then. A quick good search shows a bunch of different android plist parsers. I assume whatever route I take with android I will need a parser, yet on iOS i can just read plists natively so i may as well stay with …
msovani;422842 said:Have you tried adding breakpoints in your viewDidLoad and viewDidAppear to see how many times they are getting called?
viewDidLoad is probably getting called once. viewDidAppear should be getting called every time view becomes …
fiftysixty;420438 said:I believe what you want is UIScrollView directionalLockEnabled. Set it to yes in your scroll view and see if it does what you want.
Perfect! thanks for that! i looked through the documentation twice yesterday before posting.. …
Duncan C;417101 said:No, probably not.
Devices with a gyro (4, 4s, and iPad 2) are better at this than devices without, but the accelerometer is bad and figuring out your location in space. It can figure out direction, but not placement. Over a sho…
i was just wondering recently about forums for jailbroken, not for the app store, but for my personal use only. Duncan, do you know of any forums where there is help about writing apps for a jailbroken phone?
sleepless, Can you 100% confirm that you can only use made for ipod accessories? is there really no way to use any gps receiver via bluetooth?Did you find that in apple documentation or via personal experimentation and experience?
I have had someon…
Domele;415786 said:Put that in a separate header file, import it into all your classes that use the protocol. Just add the delegate ivar and property.
ahh fantastic! that does make sense, thanks for that! so simple...
dfvdan;405058 said:Are you sure?
I seem to remember looking into that and you could be based internationally but had to acquire a Dun & Bradstreet number (for enrollment in the Enterprise Program). At least over here it is possible to get that…
Syntex;407686 said:Storyboard lags me a lot too with my app have something like 150+ view controllers and its getting bad. I run a macbook pro with 4gb DDR3 as well.
I wish there was a way to hide content in storyboard so it doesn't load the 90% of…
zardon;407653 said:Did you try re-downloading a fresh copy of xcode, removing your old copy and install the new xcode sdk?
Thanks
no i havent tried re-downloading xcode. i already have the latest, and the issue has been present since i first moved …
churni;400267 said:Hi there,
I would be very grateful and appreciative if somebody could either write me a tutorial or show me a tutorial in which i could learn how to use the newsstand to open an app within which there are some pdf's (or collectio…
Alex JV;399685 said:Hi Guys,
We need a quote to build a fully functional newsstand app with in app purchasing for future issues of the magazine.
The magazine is already in stores in print and this is the next natural step.
I look forward to heari…
baja_yu;396608 said:Just to let you know that you're not alone. I've seen this behavior as well. And to make matter worse, it's not consistent in my case. Sometimes the video repeats what appears to be like indefinitely, other times it repeats a few…
i might be getting somewhere, but am a little stuck.
what ive done is within the notification method will enter fullscreen, ive added:
vc = [[CEVideoViewController alloc] init];
[appVC presentModalViewController:vc animated:NO];
[vc.view a…
baja_yu, ive done as suggested and put the video controller in its own viewcontroller, but shouldAutorotateToInterfaceOrientation was not being called in the videos view controller. after some investigation, i found an apple document saying only the…
has anyone else seen anything like this issue? ive spent all of yesterday and today working on it, and its killing me..
today i have tried to go about repeating the video myself instead of using repeatModeOne. im making a work around, but im getti…
if you just want a basic mag, then sure adobe is fine. but it has a limited feature set, you cant write anything custom for it, unless you want to do custom things in html5, but im not a fan of it. compared to writing in objective c, html5 is slow a…
Mogglas;391850 said:Well, then my tip is: comment out as much as possible. make an empty init, test it. And then uncomment one or a few lines per run. That will make it easy to isolate the leak.
perfect! i should have thought of that... i could comm…
its quite possible thats the issue.. i tried putting CFRelease(pixels); at the end of the init method, didnt fix the issue. but also im not sure ive done it right, im not sure if CFRelease is the right thing to use, but its the best i could find. th…
doing the apple bug report now. the strange thing is its never done it on my iphone 4 or 3gs. but 100% repeatable on my ipads 1 and 2.
ive recorded a video to show what is happening. normally it takes up to a minute or so for the burn in to happen,…
the above code is a generic class method i have created, and i can call that method on any view i wish. generally it would only be called on a UIImageView (either a static image or an image sequence), maybe a uiview containing images, could be a uiv…
simplyDusty;391127 said:I believe you can remove the animation on your view's layer. You'll need to import the QuartzCore.h file.
[yourViewThatIsAnitmating.layer removeAllAnimations];
yeah i tried that, but had no success. it did nothing. maybe bec…
sumosumo84;391016 said:it could be the device's screen. as what your describing basically breaks every rule in the book. try it on a different device, or if you have no other device try a simulator. but if what your saying is true, that its not your…
ok, i have found the problem, if i comment out the double tap recogniser on the second uiscrollview, my buttons work perfect. i just added a delegate to the recogniser to ignore if the class is a uibutton, and now its perfect
Did any of the answers fix your problem?
I am having a delay as well. I'm not sure what is causing it. i am already using touch up inside
[buttonGalleryImageButton addTarget:self action:@selector(buttonGalleryButtonPressed:) forControlEvents: UICo…
Thanks so much guys! dljeffery, i didnt actually know you could do that ;) thats going to save a lot of time! thanks!
to add my observers im writing this in the initWithFrame:(CGRect)frame
[[NSNotificationCenter defaultCenter] addObserver:self sel…