NSSegmentedControl in select any mode not working with textured appearance?

2010-12-09 Thread Jesper Papmehl-Dufay
Hi! I'm having a bit of trouble with the segmented control. I'm trying to use it as a group of check buttons (I set the Mode to Select Any in Interface Builder). This works fine as long as I don't set the Style to Textured Rounded or Textured Square in IB. If I do, the control stops drawing the

[iOS] How to add push animation to view controller without a navigation controller

2010-12-09 Thread Tharindu Madushanka
Hi, I would like to present my next view controller in a way that pushed in. But my first view controller is not a navigation controller. How could I do this. Is it possible ? Thanks and Kind Regards, Tharindu ___ Cocoa-dev mailing list (Cocoa-dev@li

Re: Getting nextKeyView to work

2010-12-09 Thread Stevo Brock
OK. Nevermind. You have to set the InitialFirstResponder of the TabView Item to get it to go... -Stevo On Dec 9, 2010, at 7:25 PM, Stevo Brock wrote: > Hi All, > > I'm having trouble getting things set up so that I can tab between my > NSTextViews properly. I have a window that has a TabV

Getting nextKeyView to work

2010-12-09 Thread Stevo Brock
Hi All, I'm having trouble getting things set up so that I can tab between my NSTextViews properly. I have a window that has a TabView as the only top-level view. When I put 3 TextViews in the first tab, I have not yet been able to get their nextKeyView to work. I've looked online about maki

Re: iOS multiple text colors in an editable text field

2010-12-09 Thread Kyle Sluder
On Thu, Dec 9, 2010 at 5:43 PM, BareFeetWare wrote: > Hi all, > > How can I display and edit text with multiple colors on iOS? There is no rich text editing support on iOS. I don't know if anyone's offering it in a framework. --Kyle Sluder ___ Cocoa-d

iOS multiple text colors in an editable text field

2010-12-09 Thread BareFeetWare
Hi all, How can I display and edit text with multiple colors on iOS? I looked into this months ago and got nowhere, but I've since noticed several iOS apps doing it. Even Apple's Mail app allows you to edit multi-colored text in a reply. So there must be a way I'm missing. What I know: 1. UIT

Re: What's the recommended way to have multiple views on one tab?

2010-12-09 Thread John Joyce
Hi Gavin, Here's the link. https://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/Introduction/Introduction.html (you will need to sign in of course) I sent html mail instead of plan text my mistake. You should still be able to also swap controls. I

Re: label color

2010-12-09 Thread Kyle Sluder
[back on list] On Thu, Dec 9, 2010 at 4:22 PM, Ariel Feinerman wrote: > Don`t worry, I know the C ;-) > I mean scheme of colors (where 0x000E is green, blue, so on) Ohh. Sorry, can't help ya there. :) I'm sure someone's figured it out, though. It also wouldn't be all that difficult to just whip

Re: label color

2010-12-09 Thread Kyle Sluder
On Thu, Dec 9, 2010 at 3:12 PM, Ariel Feinerman wrote: > sorry, coming back to the question, the kColor seems to be hex number, so > how to do? I can see nothing in google. It's a bitfield. Might I suggest picking up an introductory book on C programming? --Kyle Sluder _

Re: label color

2010-12-09 Thread Ariel Feinerman
sorry, coming back to the question, the kColor seems to be hex number, so how to do? I can see nothing in google. 2010/12/8 Sean McBride > On Sun, 5 Dec 2010 15:47:32 -0700, Nick Zitzmann said: > > >No. The only parts of Carbon that have gone away are the obsolete APIs > >(FSSpec, Internet Confi

Re: NSView/NSTableView question

2010-12-09 Thread Benjamin Stiglitz
> Great thanks for the replies. I was also thinking about this but I might try > to add a little bit of graphics too using NSBezierPath would it still work? > But at least these 2 ideas can keep me going until I get this working right. > Thanks! You can also do this in a subclass of NSTableV

[MEET] CocoaHeads-NYC, tonight

2010-12-09 Thread aglee
In one hour!  Sorry for the late notice again. --Andy -- Paul Kim will be our last speaker of 2010. His talk will be on "Memory management with blocks & an introduction to heapshot analysis" -- two topics for the price of one! Admission is free and everyone's welcome. Just tell the per

Re: What's the recommended way to have multiple views on one tab?

2010-12-09 Thread G S
On Thu, Dec 9, 2010 at 2:49 AM, John Joyce wrote: > Here you go Gavin: > Creating and Managing a View Hierarchy > This is in the View Programming Guide For iOS Thanks, John. Although that link didn't work, I did look at what seems to be the current equivalent area of the docs. One extra require

CALayers, GCD, CATransaction flush and CGContextFlush

2010-12-09 Thread vincent habchi
Hi there, apparently, it is still mandatory to use - [CALayer setNeedsDisplay] and - [CALayer display], followed by +[CATransaction flush] in order to properly display a CALayer in a background GCD queue. However, it seems that, in -[CALayer drawInContext:], if I don't call explicitly CGContex

Re: Call web service from iPhone [use soap]

2010-12-09 Thread Sixten Otto
On Thu, Dec 9, 2010 at 6:20 AM, ico wrote: > I want to develop an iPhone app which will consume a soap web service. > I tried to use wsdl2objc (http://code.google.com/p/wsdl2objc/) to generate > the Objective C stub codes, they can be compiled but it does not work. > You say that it doesn't work

IKImageView - image erase left overs

2010-12-09 Thread FF
I'm copying and pasting a cropped image from one view to another and then erase it. The first copy and paste is OK, but on the consecutive pastings the image appears with crop marks and after erasing the small circles defining the cropping area remain. Is this a bug?___

Call web service from iPhone [use soap]

2010-12-09 Thread ico
Hi all, I want to develop an iPhone app which will consume a soap web service. I tried to use wsdl2objc (http://code.google.com/p/wsdl2objc/) to generate the Objective C stub codes, they can be compiled but it does not work. The web service I want to call is: http://www.mathertel.de/AJAXEngine/S0

Re: What's the recommended way to have multiple views on one tab?

2010-12-09 Thread John Joyce
Here you go Gavin: Creating and Managing a View Hierarchy This is in the View Programming Guide For iOS ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators

Re: What's the recommended way to have multiple views on one tab?

2010-12-09 Thread John Joyce
On Dec 9, 2010, at 7:28 PM, G S wrote: > Hi all. I find that I need to present different screens of > information under one tab, depending on whether the user is "logged > into" our app's service. If the user logs in (for which I can present > a modal view), the entire display for the tab needs

What's the recommended way to have multiple views on one tab?

2010-12-09 Thread G S
Hi all. I find that I need to present different screens of information under one tab, depending on whether the user is "logged into" our app's service. If the user logs in (for which I can present a modal view), the entire display for the tab needs to change. What's the best way to do this? Rig