Re: How to get a Normal button in iOS 7/IB

2013-10-04 Thread Dave
On 4 Oct 2013, at 00:05, Robert Martin robmar...@frontiernet.net wrote: You presented a problem, and other members spent their precious time trying to help you solve it. Just take it or leave it, but thank them all the same. This thread isn't finished and at the end of it I will thank them

Re: How to get a Normal button in iOS 7/IB / One Solution

2013-10-04 Thread Dave
Thanks a lot Ronald, that's great, I think I will add this as subclass of UIButton! Dave On 4 Oct 2013, at 03:48, Ronald Hofmann pro...@jumbosoft.de wrote: This is a fully configurable, common, all garden, down to earth, no messing around - Button code snippet generated by UI Tuner.

Re: How to get a Normal button in iOS 7/IB

2013-10-04 Thread Dave
Hi, Using the cap approach sounds good, but it's way to much work for these 5 apps I have to modify. It's all a bit mute now anyway. since I've just come out of a meeting and, because of all this Button nonsense (as well as other UI issues) we are not going to support iOS 7 for these Apps for

Re: How to get a Normal button in iOS 7/IB

2013-10-04 Thread Alex Kac
Just my two cents - its not much work at all. Create a UIButton subclass. Have it use images or code - who cares. Then you just go and change the classes throughout code to your new subclass. For 5 apps, should take…30 minutes. Not supporting iOS 7? OK… On Fri, Oct 4, 2013 at 4:02 AM, Dave

Re: How to get a Normal button in iOS 7/IB

2013-10-04 Thread Dave
On 4 Oct 2013, at 15:37, Alex Kac a...@webis.net wrote: Just my two cents - its not much work at all. Create a UIButton subclass. Have it use images or code - who cares. Then you just go and change the classes throughout code to your new subclass. For 5 apps, should take…30 minutes.

Re: How to get a Normal button in iOS 7/IB

2013-10-04 Thread Marcelo Alves
Why not enumerate each subview, detect if it is a UIButton and add the capped images? -- :: marcelo.alves On 04/10/2013, at 11:37, Alex Kac a...@webis.net wrote: Just my two cents - its not much work at all. Create a UIButton subclass. Have it use images or code - who cares. Then you

Re: How to get a Normal button in iOS 7/IB

2013-10-04 Thread Fritz Anderson
On 4 Oct 2013, at 10:54 AM, Marcelo Alves marcelo.al...@me.com wrote: Why not enumerate each subview, detect if it is a UIButton and add the capped images? Easier: Select each button and connect it to an outlet collection @property (strong, nonatomic) IBOutletCollection(UIButton) NSArray

Re: How to get a Normal button in iOS 7/IB

2013-10-04 Thread Dave
On 4 Oct 2013, at 18:14, Fritz Anderson fri...@manoverboard.org wrote: On 4 Oct 2013, at 10:54 AM, Marcelo Alves marcelo.al...@me.com wrote: Why not enumerate each subview, detect if it is a UIButton and add the capped images? Easier: Select each button and connect it to an outlet

How to get a Normal button in iOS 7/IB

2013-10-03 Thread Dave
Hi All, I want to create a button (UIButton) that actually looks like a button, e.g. with a border round, as in iOS 7 is iOS 7, preferably with IB but in code otherwise. Which properties do I need to tweak in order to get this? I've been playing around for a while and can't seem to just get a

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread David Duncan
On Oct 3, 2013, at 11:56 AM, Dave d...@looktowindward.com wrote: I want to create a button (UIButton) that actually looks like a button, e.g. with a border round, as in iOS 7 is iOS 7, preferably with IB but in code otherwise. Which properties do I need to tweak in order to get this? You

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Jens Alfke
On Oct 3, 2013, at 11:56 AM, Dave d...@looktowindward.com wrote: I want to create a button (UIButton) that actually looks like a button, e.g. with a border round, as in iOS 7 is iOS 7, preferably with IB but in code otherwise. Which properties do I need to tweak in order to get this? I

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Dave
On 3 Oct 2013, at 20:05, David Duncan david.dun...@apple.com wrote: On Oct 3, 2013, at 11:56 AM, Dave d...@looktowindward.com wrote: I want to create a button (UIButton) that actually looks like a button, e.g. with a border round, as in iOS 7 is iOS 7, preferably with IB but in code

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Kyle Sluder
On Thu, Oct 3, 2013, at 11:56 AM, Dave wrote: Hi All, I want to create a button (UIButton) that actually looks like a button, e.g. with a border round, as in iOS 7 is iOS 7, preferably with IB but in code otherwise. Which properties do I need to tweak in order to get this? Normal buttons

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Dave
On 3 Oct 2013, at 20:09, Kyle Sluder k...@ksluder.com wrote: On Thu, Oct 3, 2013, at 11:56 AM, Dave wrote: Hi All, I want to create a button (UIButton) that actually looks like a button, e.g. with a border round, as in iOS 7 is iOS 7, preferably with IB but in code otherwise. Which

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Alex Kac
Two ways: 1) Use an image. 2) Subclass the button and handle the drawing yourself. On Thu, Oct 3, 2013 at 12:56 PM, Dave d...@looktowindward.com wrote: Hi All, I want to create a button (UIButton) that actually looks like a button, e.g. with a border round, as in iOS 7 is iOS 7, preferably

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Eric E. Dolecki
Make it a custom button, supply with resizableImageWithCapInsets Google Voice: (508) 656-0622 Twitter: eric_dolecki XBoxLive: edolecki PSN: eric_dolecki On Thu, Oct 3, 2013 at 2:56 PM, Dave d...@looktowindward.com wrote: Hi All, I want to create a button (UIButton) that

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Esteban Torres
Just create a UIButton that's custom; set the background color and the layer's corner radius, borderWidth and borderColor properties to something like 5.0f, 1.5f and [[UIColor blackColor] CGColor] and that should look pretty similar to the old regular buttons -- Esteban Torres (+506)8813-0934

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Fritz Anderson
On 3 Oct 2013, at 2:09 PM, Dave d...@looktowindward.com wrote: Sorry, should have said, without using an Image. Why? Images are how this sort of thing gets done. Anything else is a stunt, unless you have some constraint you're not telling us about. (You're familiar with -[UIImage

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Dave
On 3 Oct 2013, at 21:13, Fritz Anderson fri...@manoverboard.org wrote: On 3 Oct 2013, at 2:09 PM, Dave d...@looktowindward.com wrote: Sorry, should have said, without using an Image. Why? Images are how this sort of thing gets done. Anything else is a stunt, unless you have some

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Kyle Sluder
On Thu, Oct 3, 2013, at 02:39 PM, Dave wrote: I really don't want to make lots of images just for this and to be honest, if a Framework doesn't support an Industry Standard Button out of the box, then, it sucks! Give. It. Up. And did you read Eric Dolecki's reply? --Kyle Sluder

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Robert Martin
You presented a problem, and other members spent their precious time trying to help you solve it. Just take it or leave it, but thank them all the same. Your opinion of a framework is irrelevant, please stop wasting bandwidth. Rob On Oct 3, 2013, at 5:39 PM, Dave d...@looktowindward.com

Re: How to get a Normal button in iOS 7/IB

2013-10-03 Thread Alex Zavatone
The cap approach is something that's supported with a standard button and it works really well. FWIW, I've been using it since 1998 with PNGs. Basically, the approach is that you have a PNG graphic that is nicely antialiased and alpha channeled. It consists of a button's left and right caps

Re: How to get a Normal button in iOS 7/IB / One Solution

2013-10-03 Thread Ronald Hofmann
This is a fully configurable, common, all garden, down to earth, no messing around - Button code snippet generated by UI Tuner. //*** // UI Tuner - v1.2 // Auto generated code // Generated on: 04-10-2013 00:29 // Deployment Target: iOS 6.0