Re: UIModalPresentationFormSheet on iPad and iPhone

2017-01-03 Thread Andreas Falkenhahn
Solved this now. Of course I can just add all the GUI controls to another subview and then center this subview in the root view's frame. This makes the GUI look good on both iPad and iPhone. On 02.01.2017 at 17:59 Andreas Falkenhahn wrote: > As described in the docs, view controllers t

UIModalPresentationFormSheet on iPad and iPhone

2017-01-02 Thread Andreas Falkenhahn
As described in the docs, view controllers that have their modalPresentationStyle set to UIModalPresentationFormSheet open in a popover over the presenting view controller on iPad whereas on iPhone they often (but not always) appear full screen. Since I don't use Interface Builder/Storyboar

Re: iPad Pro apps given more memory?

2015-12-09 Thread Rick Mann
Wow. Thanks! > On Dec 9, 2015, at 18:28 , Britt Durbrow > wrote: > > Well, FWIW I happen to have an iPad Pro sitting next to me, so I just whipped > up the following test and was able to allocate and write to almost 3GB of RAM > before it started crashing on me. > >

Re: iPad Pro apps given more memory?

2015-12-09 Thread Britt Durbrow
Well, FWIW I happen to have an iPad Pro sitting next to me, so I just whipped up the following test and was able to allocate and write to almost 3GB of RAM before it started crashing on me. #define allocationSize (1024ULL*1024ULL*3050ULL) #define stride (4096) - (BOOL

Re: iPad Pro apps given more memory?

2015-12-09 Thread Rick Mann
> On Dec 9, 2015, at 17:37 , Jens Alfke wrote: > > >> On Dec 9, 2015, at 5:17 PM, Rick Mann wrote: >> >> - By "virtual memory," I'm sure you don't mean it's swapping to disk >> (flash). Or do you? If not, how is it virtual? > > All memory is virtual in any modern OS — the only thing that se

Re: iPad Pro apps given more memory?

2015-12-09 Thread David Duncan
ond the dirty limit. >>> >>> Hi. Sorry, can you elaborate on that? Is the "virtual limit" the thing that >>> used to be 600 MB? What's the dirty limit, and how does it compare with the >>> virtual limit? >> >> The virtual limit is how m

Re: iPad Pro apps given more memory?

2015-12-09 Thread Jens Alfke
> On Dec 9, 2015, at 5:17 PM, Rick Mann wrote: > > - By "virtual memory," I'm sure you don't mean it's swapping to disk (flash). > Or do you? If not, how is it virtual? All memory is virtual in any modern OS — the only thing that sees ‘real’ memory addresses is the kernel’s VM subsystem. ‘Vir

Re: iPad Pro apps given more memory?

2015-12-09 Thread Rick Mann
gt; The virtual limit is 2GB on most devices right now, so you can use mmap() >>> to go beyond the dirty limit. >> >> Hi. Sorry, can you elaborate on that? Is the "virtual limit" the thing that >> used to be 600 MB? What's the dirty limit, and how does it

Re: iPad Pro apps given more memory?

2015-12-09 Thread Jens Alfke
> On Dec 9, 2015, at 16:24 , David Duncan > wrote: > > The virtual limit is 2GB on most devices right now, so you can use mmap() to > go beyond the dirty limit. Hm, I wasn’t aware that was limited. 2GB seems like a lot normally, but there are databases engines l

Re: Supporting iPad Pro keyboard in iOS apps?

2015-12-09 Thread Rick Mann
ng the storyboard fixed the issue, and identified a few places where we had other images that need new sizes. The keyboard shows up correctly now. Thanks all! > >> >>> >>> On Wednesday, December 9, 2015, Rick Mann wrote: >>> Our app, which seems to run just fin

Re: iPad Pro apps given more memory?

2015-12-09 Thread David Duncan
> On Dec 9, 2015, at 4:35 PM, Rick Mann wrote: > >> >> On Dec 9, 2015, at 16:24 , David Duncan wrote: >> >> >>> On Dec 9, 2015, at 3:36 PM, Rick Mann wrote: >>> >>> On Dec 9, 2015, at 15:19 , Jens Alfke wrote: > On Dec 9, 2015, at 2:56 PM, Rick Mann wrote: > >>

Re: iPad Pro apps given more memory?

2015-12-09 Thread Rick Mann
> On Dec 9, 2015, at 16:24 , David Duncan wrote: > > >> On Dec 9, 2015, at 3:36 PM, Rick Mann wrote: >> >> >>> On Dec 9, 2015, at 15:19 , Jens Alfke wrote: >>> >>> On Dec 9, 2015, at 2:56 PM, Rick Mann wrote: One of the WWDC videos stressed that iOS apps are given no more

Re: Supporting iPad Pro keyboard in iOS apps?

2015-12-09 Thread David Duncan
latest. You are probably running scaled up. If you add a default nib or storyboard you should run at the native device size. > >> >> On Wednesday, December 9, 2015, Rick Mann wrote: >> Our app, which seems to run just fine on iPad Pro, nevertheless presents an >> old

Re: iPad Pro apps given more memory?

2015-12-09 Thread David Duncan
> On Dec 9, 2015, at 3:36 PM, Rick Mann wrote: > > >> On Dec 9, 2015, at 15:19 , Jens Alfke wrote: >> >> >>> On Dec 9, 2015, at 2:56 PM, Rick Mann wrote: >>> >>> One of the WWDC videos stressed that iOS apps are given no more than 600 MB >>> of RAM. Our app is VERY RAM-intensive. >> >>

Re: Supporting iPad Pro keyboard in iOS apps?

2015-12-09 Thread Rick Mann
> On Dec 9, 2015, at 15:50 , SevenBits wrote: > > Is it a matter of building with an newer SDK? I don't think so; we're building with the latest. > > On Wednesday, December 9, 2015, Rick Mann wrote: > Our app, which seems to run just fine on iPad Pro, neverthel

Re: Supporting iPad Pro keyboard in iOS apps?

2015-12-09 Thread SevenBits
Is it a matter of building with an newer SDK? On Wednesday, December 9, 2015, Rick Mann wrote: > Our app, which seems to run just fine on iPad Pro, nevertheless presents > an old-style keyboard when editing fields. The iPad Pro has a (graphical) > keyboard with more keys than previou

Re: iPad Pro apps given more memory?

2015-12-09 Thread Rick Mann
> On Dec 9, 2015, at 15:19 , Jens Alfke wrote: > > >> On Dec 9, 2015, at 2:56 PM, Rick Mann wrote: >> >> One of the WWDC videos stressed that iOS apps are given no more than 600 MB >> of RAM. Our app is VERY RAM-intensive. > > Slightly off-topic, but I wonder if you could use mmap to give

Re: iPad Pro apps given more memory?

2015-12-09 Thread Jens Alfke
> On Dec 9, 2015, at 2:56 PM, Rick Mann wrote: > > One of the WWDC videos stressed that iOS apps are given no more than 600 MB > of RAM. Our app is VERY RAM-intensive. Slightly off-topic, but I wonder if you could use mmap to give your app more address space? Create a big empty file, mmap it

iPad Pro apps given more memory?

2015-12-09 Thread Rick Mann
One of the WWDC videos stressed that iOS apps are given no more than 600 MB of RAM. Our app is VERY RAM-intensive. On iPad pro, very large documents continue to run without crashing like they do on previous devices. Does the iPad Pro allow apps more RAM? TIA, -- Rick Mann rm

Supporting iPad Pro keyboard in iOS apps?

2015-12-09 Thread Rick Mann
Our app, which seems to run just fine on iPad Pro, nevertheless presents an old-style keyboard when editing fields. The iPad Pro has a (graphical) keyboard with more keys than previous devices. But ours shows a blown-up version of the older keyboard. No matter what search term I use, I can&#

Re: How to remove iPad popover?

2015-04-15 Thread Kyle Sluder
On Wed, Apr 15, 2015, at 12:00 AM, Kyle Sluder wrote: > Segues are transient objects that only exist Er, I meant "that only exist long enough to perform their action". In other words, if you perform a popover segue, that UIStoryboardSegue object ceases to exist once the popover is onscreen. --Kyl

Re: How to remove iPad popover?

2015-04-15 Thread Gerriet M. Denkmann
> > > On Tue, Apr 14, 2015, at 11:49 PM, Gerriet M. Denkmann wrote: >> And if there is any way (easy or not) to get this (in a non-deprecated >> way), I would be very interested to hear about it. > > There is not. Please file a Radar. I filed two: 20549495 Unable to get popover controller. 20

Re: How to remove iPad popover?

2015-04-14 Thread Kyle Sluder
On Tue, Apr 14, 2015, at 11:49 PM, Gerriet M. Denkmann wrote: > And if there is any way (easy or not) to get this (in a non-deprecated > way), I would be very interested to hear about it. There is not. Please file a Radar. > > By the way: UIStoryboardPopoverSegue has a popoverController property

Re: How to remove iPad popover?

2015-04-14 Thread Gerriet M. Denkmann
Controller property. But then: how to get the UIStoryboardPopoverSegue ? Kind regards, Gerriet. > > Cheers, > Dave > >> On Apr 14, 2015, at 10:13 PM, Gerriet M. Denkmann >> wrote: >> >> >>> On 15 Apr 2015, at 08:59, Roland King wrote: >>> >>> >

Re: How to remove iPad popover?

2015-04-14 Thread Dave Fernandes
easier way, I would love to hear about it. Cheers, Dave > On Apr 14, 2015, at 10:13 PM, Gerriet M. Denkmann > wrote: > > >> On 15 Apr 2015, at 08:59, Roland King wrote: >> >> >>> On 15 Apr 2015, at 09:49, Gerriet M. Denkmann wrote: >>> >>&

Re: How to remove iPad popover?

2015-04-14 Thread Gerriet M. Denkmann
> On 15 Apr 2015, at 08:59, Roland King wrote: > > >> On 15 Apr 2015, at 09:49, Gerriet M. Denkmann wrote: >> >> On iPad (portrait orientation) there is on the left a MasterView, >> overlapping the DetailView. >>

Re: How to remove iPad popover?

2015-04-14 Thread Roland King
> On 15 Apr 2015, at 09:49, Gerriet M. Denkmann wrote: > > On iPad (portrait orientation) there is on the left a MasterView, overlapping > the DetailView. > (i.e. splitViewController.displayMode = > UISplitViewControllerDisplayModePrimaryOverlay) > > When I ta

How to remove iPad popover?

2015-04-14 Thread Gerriet M. Denkmann
On iPad (portrait orientation) there is on the left a MasterView, overlapping the DetailView. (i.e. splitViewController.displayMode = UISplitViewControllerDisplayModePrimaryOverlay) When I tap on the DetailView, the MasterView slides away. (i.e. splitViewController.displayMode

Re: Allow tap events outside a custom UIPresentationController on iPad(iOS 8)

2015-02-01 Thread Mazzaroth M.
nController > >> animated:YES completion:NULL]; > >> > >> in the UIPresentationViewController subclass, I override > >> > >> -frameOfPresentedViewInContainerView > >>and > >> -sizeForChildContentContainer:withParentContainerSize: >

Re: Allow tap events outside a custom UIPresentationController on iPad(iOS 8)

2015-01-31 Thread Mike Abdullah
-sizeForChildContentContainer:withParentContainerSize: >> >> so far. Just hoping to get it `working` and in >> -sizeForChildContentContainer:withParentContainerSize: return a smaller >> width than the landscape iPad. Voila, the modal does a standard >> presentation trans

Re: Allow tap events outside a custom UIPresentationController on iPad(iOS 8)

2015-01-29 Thread Mazzaroth M.
rSize: > > so far. Just hoping to get it `working` and in > -sizeForChildContentContainer:withParentContainerSize: return a smaller > width than the landscape iPad. Voila, the modal does a standard > presentation transition from the bottom of the screen. However, tapping > anywhere around the presented modal results in no events,

Allow tap events outside a custom UIPresentationController on iPad(iOS 8)

2015-01-28 Thread Mazzaroth M.
nd in -sizeForChildContentContainer:withParentContainerSize: return a smaller width than the landscape iPad. Voila, the modal does a standard presentation transition from the bottom of the screen. However, tapping anywhere around the presented modal results in no events, which is what I actually wan

Re: Updating iPad to 8.0 final

2014-09-22 Thread Clark S. Cox III
> On Sep 22, 2014, at 16:28, Rick Mann wrote: > > > On Sep 22, 2014, at 16:23 , Clark S. Cox III wrote: > >> >>> On Sep 18, 2014, at 10:36, Rick Mann wrote: >>> >>> I have an iPad, 3rd gen, Wi-Fi + Cellular (AT&T). It's

Re: Updating iPad to 8.0 final

2014-09-22 Thread Rick Mann
On Sep 22, 2014, at 16:23 , Clark S. Cox III wrote: > >> On Sep 18, 2014, at 10:36, Rick Mann wrote: >> >> I have an iPad, 3rd gen, Wi-Fi + Cellular (AT&T). It's model A1430. I >> downloaded the appropriate .ipsw file (iPad3,2_8.0_12A365_Restore.ipsw),

Re: Updating iPad to 8.0 final

2014-09-22 Thread Clark S. Cox III
> On Sep 18, 2014, at 10:36, Rick Mann wrote: > > I have an iPad, 3rd gen, Wi-Fi + Cellular (AT&T). It's model A1430. I > downloaded the appropriate .ipsw file (iPad3,2_8.0_12A365_Restore.ipsw), but > iTunes refuses to update it, saying "The iPad “XXX” could

Re: Updating iPad to 8.0 final

2014-09-18 Thread Jim Adams
I downloaded that one for use with the iPad WITHOUT cellular. Check and make sure you got the right one. On 9/18/14, 1:36 PM, "Rick Mann" wrote: >I have an iPad, 3rd gen, Wi-Fi + Cellular (AT&T). It's model A1430. I >downloaded the appropriate .ipsw file (iPad3,2_8.0_1

Updating iPad to 8.0 final

2014-09-18 Thread Rick Mann
I have an iPad, 3rd gen, Wi-Fi + Cellular (AT&T). It's model A1430. I downloaded the appropriate .ipsw file (iPad3,2_8.0_12A365_Restore.ipsw), but iTunes refuses to update it, saying "The iPad “XXX” could not be updated because the firmware file is not compatible." Any

Re: universal app - with iPad disabled

2014-06-03 Thread Torsten Curdt
Thanks folks! On Sun, Jun 1, 2014 at 2:08 AM, Roland King wrote: > It's right there on the deployment info tab of the app. 'Devices: > Universal/iPhone/iPad' > > > On 1 Jun, 2014, at 4:11 am, Torsten Curdt wrote: > >> I know it sounds strange at

Re: universal app - with iPad disabled

2014-05-31 Thread Roland King
It's right there on the deployment info tab of the app. 'Devices: Universal/iPhone/iPad' On 1 Jun, 2014, at 4:11 am, Torsten Curdt wrote: > I know it sounds strange at first - but... > > I am working on an universal app. I would like to release the iPhone >

universal app - with iPad disabled

2014-05-31 Thread Torsten Curdt
I know it sounds strange at first - but... I am working on an universal app. I would like to release the iPhone version first - before it's optimized for the iPad. It's already setup as universal project though. Now I am wondering: Is there an easy way to turn that project into an iPho

Re: iPad keyboards

2013-12-17 Thread Luther Baker
On Thu, Dec 12, 2013 at 3:08 PM, Rick Mann wrote: > > That's good to know; I thought they were requiring iOS 7. > > https://developer.apple.com/news/index.php?id=12172013a#top > Even so, does an iOS 6 SDK-based app not get all iOS 7 styling? I'd try > the experiment myself, but it's a bit of wo

Re: iPad keyboards

2013-12-16 Thread Maxthon Chan
Hangout is code-styled to iOS 7 fashion (pretty much in order to keep in align with their Google+ app which is already using iOS 7 SDK). Those non-iOS 6-look controls are not presented by the app per se. UIAlertView is in SpringBoard.app (it blocks power button and home button) and the cut/copy

Re: iPad keyboards

2013-12-16 Thread Rick Mann
On Dec 12, 2013, at 21:11 , Maxthon Chan wrote: > If you run a stock iOS 6 app on iOS 7 you get most of the UI in iOS 6 style. > As what I said, UIAlertView is not in your app but SpringBoard.app so that > will still get the iOS 7 look, for SpringBoard.app is linked against iOS 7 > SDK. > >

Re: iPad keyboards

2013-12-16 Thread Maxthon Chan
If you run a stock iOS 6 app on iOS 7 you get most of the UI in iOS 6 style. As what I said, UIAlertView is not in your app but SpringBoard.app so that will still get the iOS 7 look, for SpringBoard.app is linked against iOS 7 SDK. If you are styling iOS 6 app in the fashion of iOS 7 app you can

Re: iPad keyboards

2013-12-12 Thread Shawn Erickson
Your app is tagged with the SDK you link against. When running on a later version of the OS then the SDK the app is built with the OS may (and often does) run the application in a compatibility mode in an attempt to avoid causing problems for the app. On Thu, Dec 12, 2013 at 1:08 PM, Rick Mann w

Re: iPad keyboards

2013-12-12 Thread David Duncan
On Dec 12, 2013, at 1:08 PM, Rick Mann wrote: > > On Dec 12, 2013, at 11:58 , Shawn Erickson wrote: > >> We have been submitting and getting approved apps built with Xcode 4.x and >> iOS 6 SDK without issue still. Apple knows the iOS 7 jump is fairly large >> for some apps so hasn't yet been

Re: iPad keyboards

2013-12-12 Thread Rick Mann
On Dec 12, 2013, at 11:58 , Shawn Erickson wrote: > We have been submitting and getting approved apps built with Xcode 4.x and > iOS 6 SDK without issue still. Apple knows the iOS 7 jump is fairly large > for some apps so hasn't yet been forceful but I expect to happen at some > point. That's g

Re: iPad keyboards

2013-12-12 Thread Shawn Erickson
We have been submitting and getting approved apps built with Xcode 4.x and iOS 6 SDK without issue still. Apple knows the iOS 7 jump is fairly large for some apps so hasn't yet been forceful but I expect to happen at some point. On Thu, Dec 12, 2013 at 1:38 AM, Rick Mann wrote: > I thought you

Re: iPad keyboards

2013-12-12 Thread Mike Abdullah
On 12 Dec 2013, at 15:39, Luther Baker wrote: > > > On Dec 12, 2013, at 3:38 AM, Rick Mann wrote: > >> I thought you had to use Xcode 5 to submit now, > > Xcode 5 can build with the 6 SDK. Not without modifying the Xcode package, or other monkeying about with settings. Perhaps you’re thin

Re: iPad keyboards

2013-12-12 Thread Luther Baker
On Dec 12, 2013, at 3:38 AM, Rick Mann wrote: > I thought you had to use Xcode 5 to submit now, Xcode 5 can build with the 6 SDK. > and I thought it had to be linked against iOS 7. Dunno > I'm pretty sure Apple rejected one of my binaries because of that. > Might try to clarify for which

Re: iPad keyboards

2013-12-12 Thread Maxthon Chan
Seem to me that Xcode 4.6.3 and iOS 6 SDK is still working, from my friends. On Dec 12, 2013, at 15:25, Maxthon Chan wrote: > Well on OS X Mavericks I have > /System/Library/Frameworks/Foundation.framework/Version/C/Foundation - and I > can assume tat versions A are from NeXTSTEP (possibly use

Re: iPad keyboards

2013-12-12 Thread Rick Mann
I thought you had to use Xcode 5 to submit now, and I thought it had to be linked against iOS 7. I'm pretty sure Apple rejected one of my binaries because of that. On Dec 12, 2013, at 01:34 , Kyle Sluder wrote: >> On Dec 11, 2013, at 9:49 PM, Rick Mann wrote: > >> >> They released the lates

Re: iPad keyboards

2013-12-12 Thread Kyle Sluder
> On Dec 11, 2013, at 9:49 PM, Rick Mann wrote: > > They released the latest version of their app Nov 19. They would've had to > build against the iOS 7 SDK. As far as I know, Apple is still accepting binaries linked against the iOS 6 SDK. --Kyle Sluder _

Re: iPad keyboards

2013-12-11 Thread Maxthon Chan
Well on OS X Mavericks I have /System/Library/Frameworks/Foundation.framework/Version/C/Foundation - and I can assume tat versions A are from NeXTSTEP (possibly used in early PPC OS X too) Also, I distribute my CGIKit framework in two versions, version F and G - versions F and G have different

Re: iPad keyboards

2013-12-11 Thread Greg Parker
On Dec 11, 2013, at 10:46 PM, Maxthon Chan wrote: > Bad example - you should use the example between NeXTSTEP/Mach and OS X, > which the identical technology, library versioning, is used. (People do you > still remember that OS X derived from NeXTSTEP, to the extent that OS X 10.0 > have versio

Re: iPad keyboards

2013-12-11 Thread Maxthon Chan
wrote: > Right, so how were they able to release an app 11/19 without using the iOS 7 > sdk? I doubt they submitted it long before that. > > Sent from my iPhone > > On Dec 11, 2013, at 22:04, Luther Baker wrote: > >> Technically, an iPad running iOS7 can run apps

Re: iPad keyboards

2013-12-11 Thread Maxthon Chan
4:04, Luther Baker wrote: > Technically, an iPad running iOS7 can run apps in iOS6 compatibility mode. > > The keyboard is a dead giveaway. > > It is similar to an original OSX upgrade from OS9, where some OS9 apps could > run within OSX under an OS9 compatibility mode. Or think o

Re: iPad keyboards

2013-12-11 Thread Rick Mann
Right, so how were they able to release an app 11/19 without using the iOS 7 sdk? I doubt they submitted it long before that. Sent from my iPhone On Dec 11, 2013, at 22:04, Luther Baker wrote: > Technically, an iPad running iOS7 can run apps in iOS6 compatibility mode. > > The keyb

Re: iPad keyboards

2013-12-11 Thread Luther Baker
Technically, an iPad running iOS7 can run apps in iOS6 compatibility mode. The keyboard is a dead giveaway. It is similar to an original OSX upgrade from OS9, where some OS9 apps could run within OSX under an OS9 compatibility mode. Or think of it like running a windows app in Parallels on a Mac

Re: iPad keyboards

2013-12-11 Thread Rick Mann
g appearance proxy. >>> >>> On Dec 12, 2013, at 13:26, Rick Mann wrote: >>> >>>> Why does the Google Hangouts app on iPad, on iOS 7, have a nice-looking >>>> iOS-6 style keyboard? Other UI in the app lo

Re: iPad keyboards

2013-12-11 Thread Maxthon Chan
t is not that difficult by >> using appearance proxy. >> >> On Dec 12, 2013, at 13:26, Rick Mann wrote: >> >>> Why does the Google Hangouts app on iPad, on iOS 7, have a nice-looking >>> iOS-6 style keyboard? Other UI in the app looks like iOS 7 UI. >&

Re: iPad keyboards

2013-12-11 Thread Rick Mann
proxy. > > On Dec 12, 2013, at 13:26, Rick Mann wrote: > >> Why does the Google Hangouts app on iPad, on iOS 7, have a nice-looking >> iOS-6 style keyboard? Other UI in the app looks like iOS 7 UI. >> >> Hangouts: http://cl.ly/image/1U2T1e1y1G15 >>

Re: iPad keyboards

2013-12-11 Thread Maxthon Chan
They simulated iOS 7 looks using iOS 6 SDK. It is not that difficult by using appearance proxy. On Dec 12, 2013, at 13:26, Rick Mann wrote: > Why does the Google Hangouts app on iPad, on iOS 7, have a nice-looking iOS-6 > style keyboard? Other UI in the app looks like iOS 7 UI. > &

iPad keyboards

2013-12-11 Thread Rick Mann
Why does the Google Hangouts app on iPad, on iOS 7, have a nice-looking iOS-6 style keyboard? Other UI in the app looks like iOS 7 UI. Hangouts: http://cl.ly/image/1U2T1e1y1G15 Safari: http://cl.ly/image/2C1B2r2n2J3J -- Rick signature.asc Description: Message signed with OpenPGP using

Re: UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-03 Thread David Duncan
s Spoettl >>>> wrote: >>>> >>>>> On the iPad (both device and simulator) this produces a sheet with >>>>> "Button2" missing. No matter how many buttons one adds, the last one added >>>>> goes missing. >>>>>

Re: UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-03 Thread Fritz Anderson
On 3 Oct 2013, at 12:59 PM, David Duncan wrote: > On Oct 2, 2013, at 11:49 PM, Markus Spoettl wrote: > >> On 10/2/13 10:40 PM, David Duncan wrote: >>> On Oct 2, 2013, at 9:33 AM, Markus Spoettl wrote: >>> >>>> On the iPad (both device and simulator

Re: UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-03 Thread David Duncan
On Oct 2, 2013, at 11:49 PM, Markus Spoettl wrote: > On 10/2/13 10:40 PM, David Duncan wrote: >> On Oct 2, 2013, at 9:33 AM, Markus Spoettl wrote: >> >>> On the iPad (both device and simulator) this produces a sheet with >>> "Button2" missing. No mat

Re: UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-02 Thread Markus Spoettl
On 10/2/13 10:40 PM, David Duncan wrote: On Oct 2, 2013, at 9:33 AM, Markus Spoettl wrote: On the iPad (both device and simulator) this produces a sheet with "Button2" missing. No matter how many buttons one adds, the last one added goes missing. On iPhone (again both device and

Re: UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-02 Thread David Duncan
On Oct 2, 2013, at 9:33 AM, Markus Spoettl wrote: > On the iPad (both device and simulator) this produces a sheet with "Button2" > missing. No matter how many buttons one adds, the last one added goes missing. > > On iPhone (again both device and simulator) this pro

Re: UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-02 Thread Markus Spoettl
on requires. A Google search on stackoverflow.com tells me that if a Cancel button is specified on iPad, it will bump the last button from the sheet. So much for "should not." I haven't made the experiment of cascading the sheet on a popover. When I'm off work, I'll try

Re: UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-02 Thread Fritz Anderson
to handle the special decoration a Cancel button requires. A Google search on stackoverflow.com tells me that if a Cancel button is specified on iPad, it will bump the last button from the sheet. So much for "should not." I haven't made the experiment of cascading the sheet on

UIActionSheet -addButtonWithTitle weirdness on iPad

2013-10-02 Thread Markus Spoettl
Titles:nil]; [sheet addButtonWithTitle:@"Button1"]; [sheet addButtonWithTitle:@"Button2"]; [sheet showFromRect:someRect inView:someView animated:YES]; On the iPad (both device and simulator) this produces a sheet with "Button2" missing. No matter how many b

Re: Get file from server with iPad App

2013-08-13 Thread Alex Zavatone
sides downloading an older version of Xcode and hoping the dev docs have the earlier version? Cheers. On Aug 12, 2013, at 11:12 PM, koko wrote: > > I want to get a file from a server into my iPad App. > > If I do http://... it launches Safari. > > I just want the file … what is

Re: Get file from server with iPad App

2013-08-12 Thread koko
On Aug 12, 2013, at 9:21 PM, Kyle Sluder wrote: > Have you not come across NSURLConnection in your assuredly exhaustive Google > search? Yep, right after I posted … ! -koko ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post

Re: Get file from server with iPad App

2013-08-12 Thread Kyle Sluder
Have you not come across NSURLConnection in your assuredly exhaustive Google search? --Kyle Sluder (Sent from the road) On Aug 12, 2013, at 8:12 PM, koko wrote: > > I want to get a file from a server into my iPad App. > > If I do http://... it launches Safari. > > I

Get file from server with iPad App

2013-08-12 Thread koko
I want to get a file from a server into my iPad App. If I do http://... it launches Safari. I just want the file … what is the proper way to do this? -koko ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or

Re: iPad hide keyboard button for iphone

2013-02-28 Thread David Duncan
The iPhone keyboard does not have a hide button, it is specific to the iPad. On Feb 28, 2013, at 6:36 PM, Rick C. wrote: > Hi, > > In case I overlooked this somewhere is there a way to have the iPhone > keyboard show this button to hide/show the keyboard? Or must I create my o

iPad hide keyboard button for iphone

2013-02-28 Thread Rick C.
Hi, In case I overlooked this somewhere is there a way to have the iPhone keyboard show this button to hide/show the keyboard? Or must I create my own custom solution? Thanks, rc ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not

Re: IOS iPad PopOver Nav bar color

2013-02-27 Thread Izzy Fraimow
Can you point to a screen shot of what your desired effect is, and one that looks like what you're seeing now? If you want something _exactly_ like the Calendar app (http://i.imgur.com/4LG3qU0.png) and that is not what you're getting, you need to populate the popover with a UINavigationControll

Re: IOS iPad PopOver Nav bar color

2013-02-22 Thread Alex Zavatone
I just came across this the other day. You can crack open AI or PS and draw your own and replace the graphic which is a great skill to learn. http://layersmagazine.com/designing-ios-tab-and-navigation-bars-in-photoshop.html Then use this: if ([self.navigationController.navigationBar respondsT

Re: IOS iPad PopOver Nav bar color

2013-02-22 Thread Matt Neuburg
On Sun, 17 Feb 2013 17:24:25 -0800, Trygve Inda said: >I have a popover view and would like a nav-like title bar on it in a dark >color that matches the frame gradient of the popover fram. I can make the >nav bar grey or black, but can't seem to get it to apply the gradient that >the frame has. S

Re: IOS iPad PopOver Nav bar color

2013-02-19 Thread Alex Zavatone
This might help. http://stackoverflow.com/questions/1852319/uinavigationbar-gradient-details On Feb 17, 2013, at 8:24 PM, Trygve Inda wrote: > I have a popover view and would like a nav-like title bar on it in a dark > color that matches the frame gradient of the popover fram. I can make the >

IOS iPad PopOver Nav bar color

2013-02-17 Thread Trygve Inda
I have a popover view and would like a nav-like title bar on it in a dark color that matches the frame gradient of the popover fram. I can make the nav bar grey or black, but can't seem to get it to apply the gradient that the frame has. Ical seems to be able to do this when you tap "Calendars" in

iPad to Desktop over WiFi

2012-11-21 Thread Ian was here
I would like to write an iOS app that can communicate with a Mac or PC over a WiFi connection without having to go over the internet. Has anyone attempted this? If so, did you use TCP/IP or HTTP? Thank you. ___ Cocoa-dev mailing list (Cocoa-dev@lists.

Re: Does UIStoryboard know how to find the ~ipad version automatically?

2012-11-21 Thread Rick Mann
Done. 12738494 On Nov 21, 2012, at 6:48 , Roland King wrote: > > On 21 Nov, 2012, at 5:24 PM, Rick Mann wrote: > >> I had hoped this: >> >> [UIStoryboard storyboardWithName: @"MainStoryboard" bundle: nil] >> >> would load the storyboar

Re: Does UIStoryboard know how to find the ~ipad version automatically?

2012-11-21 Thread Roland King
On 21 Nov, 2012, at 5:24 PM, Rick Mann wrote: > I had hoped this: > > [UIStoryboard storyboardWithName: @"MainStoryboard" bundle: nil] > > would load the storyboard named "MainStoryboard~ipad", but it didn't seem to > work. Is it supposed

Does UIStoryboard know how to find the ~ipad version automatically?

2012-11-21 Thread Rick Mann
I had hoped this: [UIStoryboard storyboardWithName: @"MainStoryboard" bundle: nil] would load the storyboard named "MainStoryboard~ipad", but it didn't seem to work. Is it supposed to? TIA, -- Rick ___ Cocoa-de

Re: app developed for iPhone is compatible with iPad

2012-09-26 Thread Koen van der Drift
Session 305 of the 2010 WWDC developer videos discusses how to adapt an app for iPhone and iPad. - Koen. On Sep 26, 2012, at 4:43 AM, kiran kumar wrote: > Hi Everyone, > > I am new to iOS development. > > Is the app developed for iPhone is compatible with iPad / we need to

Re: app developed for iPhone is compatible with iPad

2012-09-26 Thread David Duncan
On Sep 26, 2012, at 4:43 AM, kiran kumar wrote: > Is the app developed for iPhone is compatible with iPad / we need to take > care in code for window resizing etc? If you create an iPhone only application, then it will run on iPad in compatibility mode (centered on the screen with an

app developed for iPhone is compatible with iPad

2012-09-26 Thread kiran kumar
Hi Everyone, I am new to iOS development. Is the app developed for iPhone is compatible with iPad / we need to take care in code for window resizing etc? Regards, Kiran.K The information contained in this email and any attachments is confidential and may be

Re: iPad drawing and screen rotation

2012-09-22 Thread David Duncan
On Sep 21, 2012, at 3:18 PM, Donald Hall wrote: > I have a master detail project where I draw Bezier paths in the detail view. > On rotation from portrait to landscape (or vice versa) the proportions of the > drawings are distorted. For example, a circle in one orientation becomes an > oval in

Re: iPad drawing and screen rotation

2012-09-21 Thread Gordon Apple
Anybody remember Steve Jobs having a fit about ³square pixels² somewhere back in the Lisa or early Mac days? The scale should not change on a rotation, unless you are somehow setting the bounds rect in your drawing view instead of the frame rect when rotated. That could do it. On 9/21/12 7:50 P

Re: iPad drawing and screen rotation

2012-09-21 Thread Jens Alfke
On Sep 21, 2012, at 12:18 PM, Donald Hall wrote: > I have a master detail project where I draw Bezier paths in the detail view. > On rotation from portrait to landscape (or vice versa) the proportions of the > drawings are distorted. For example, a circle in one orientation becomes an > oval

iPad drawing and screen rotation

2012-09-21 Thread Donald Hall
I have a master detail project where I draw Bezier paths in the detail view. On rotation from portrait to landscape (or vice versa) the proportions of the drawings are distorted. For example, a circle in one orientation becomes an oval in the other. What is the best way to maintain the aspect ra

Re: CurrentAddress on iPad

2012-05-16 Thread Gerriet M. Denkmann
On 17 May 2012, at 07:10, Roland King wrote: > oh hold on - are you using the original iPad 'compatibility' mode where it > just expands to 2x the size and is blurry on the screen instead of having an > iPhone NIB and an iPad NIB and a proper dual-mode app? No. When Tar

Re: CurrentAddress on iPad

2012-05-16 Thread Roland King
oh hold on - are you using the original iPad 'compatibility' mode where it just expands to 2x the size and is blurry on the screen instead of having an iPhone NIB and an iPad NIB and a proper dual-mode app? I think you must be, you said you only had one NIB the other day. I would susp

Re: CurrentAddress on iPad

2012-05-16 Thread David Duncan
On May 16, 2012, at 2:40 AM, Gerriet M. Denkmann wrote: > > I build the Apple Sample Code CurrentAddress and it works as expected. > > Then I changed Build Settings → Deployment → Targeted Device Family to: > iPhone/iPad. > > Now I can neither zoom nor pinch not pan the

CurrentAddress on iPad

2012-05-16 Thread Gerriet M. Denkmann
I build the Apple Sample Code CurrentAddress and it works as expected. Then I changed Build Settings → Deployment → Targeted Device Family to: iPhone/iPad. Now I can neither zoom nor pinch not pan the displayed map in the iPad Simulator. (It still works as expected in the iPhone Simulator

Re: Pinching an iPad

2012-05-16 Thread Gerriet M. Denkmann
On 15 May 2012, at 23:18, David Rowland wrote: > Have you turned on "Multitasking Gestures" in the iPad General Settings? > Yes, I have. > On May 14, 2012, at 9:26 PM, Gerriet M. Denkmann wrote: > >> I have an app which can be pinched and zoomed on an iPhone and

Re: Pinching an iPad

2012-05-15 Thread David Rowland
Have you turned on "Multitasking Gestures" in the iPad General Settings? D On May 14, 2012, at 9:26 PM, Gerriet M. Denkmann wrote: > I have an app which can be pinched and zoomed on an iPhone and on the iPhone > Simulator. > > But it can not be zoomed or pinched on

  1   2   3   4   >