On 23.06.2011, at 18:45, Gustavo Pizano wrote:
> Yes kinda.
"kinda"? Well, if you have a font, you simply don't have the information. So
all you can do is transition it on screen with a "wipe" effect in direction
"toRight". CIFilter and CATransition (not sure if the latter exists on iOS)
would
Is there any way to get particular time Zone supports Day Light saving(DST)
or not. For example, if you take Asia/Kolkata, no DST in any year and for
America/Chicago, DST is YES.
I saw following APIs in NSTimeZone, but it is considering the Date and
returns that date is in DST or not.
isDaylig
On Jun 24, 2011, at 4:05 AM, Uli Kusterer wrote:
> Come to think of it, you could probably manually click at even intervals on
> the stroke of every letter in characters written in the font you're using,
> record the click coordinates, and then draw bezier paths repeatedly, each
> time to one
Hello all.
So it will be good idea then to create a Mac app that will record the imput
from the mouse/pen in a character basis, then record each character and then
pass a string to a method, divided the string in characters and draw each
character from the "map" I already did before...
maybe
On Jun 24, 2011, at 8:41 AM, Gustavo Pizano wrote:
> Hello all.
>
> So it will be good idea then to create a Mac app that will record the imput
> from the mouse/pen in a character basis, then record each character and then
> pass a string to a method, divided the string in characters and draw
It's a pretty typical situation. I've got my model objects stored in an NSSet.
An NSArrayController that is bound to the NSSet. And then an NSTableView with
one NSTableColumn bound to the arrangedObjects.name property of the
NSArrayController. It works great. Now I've introduced a custom NS
I don't see an API which will do this. Can I ask you why do you need to know?
DST changes from place to place and from year to year, it's not inconceivable
that a location which never had DST before suddenly decides as of year
that it will start doing so. I would expect the current APIs whi
Hi rick,
It sounds like you are reporting a different issue than what Lee Ann was
talking about, but the work arounds may also solve your issue too.
If you can reproduce it, ideally package up a test app that makes it happen and
attach it to a bug report. Or, if that is not possible, just includ
Have some tutorial about AQGridView?
I'd like to know it better.
Thanks!
--
*Fernando Aureliano*
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at co
Hello Fernando,
AQGridView comes with samples, and you can start from there. :)
-ev
On Jun 25, 2011, at 03:49, Fernando Aureliano wrote:
> Have some tutorial about AQGridView?
>
> I'd like to know it better.
>
> Thanks!
>
> --
> *Fernando Aureliano*
> ___
I received a crash report from a user, Mac OS 10.5.8. Here's the gist:
*** Terminating app due to uncaught exception
'NSInternalInconsistencyException',
reason:
'prepareForSave:: save for NSSQLCore 0x75d740 is already in progress'
Thread 0 Crashed:
0 com.apple.CoreFoundation 0x96a75e94
___
Good evening,
I want to execute a method when the user touches a UIImageView.
I designed my interface without Interface builder tools because I am blind.
I can add an action to a UIButton with this code:
[myButton addTarget:self action:@selector(onFotoClick:)
forControlEvents:UIControlEventTouc
On 24 Jun 2011, at 3:26 PM, Jonathan Chacón Barbero wrote:
> I want to execute a method when the user touches a UIImageView.
> I designed my interface without Interface builder tools because I am blind.
>
> I can add an action to a UIButton with this code:
>
> [myButton addTarget:self action:@se
On Jun 24, 2011, at 1:36 PM, Fritz Anderson wrote:
> UIImageView is not a control, so it doesn't have built-in handlers for
> touches that would feed a target-action pair. You'll have to make a subclass
> of UIImageView (in my experience it tolerates subclassing well), and add your
> own touch
You could also create a UIButton and have it take a UIImageView.
On Jun 24, 2011, at 3:36 PM, Fritz Anderson wrote:
> On 24 Jun 2011, at 3:26 PM, Jonathan Chacón Barbero wrote:
>
>> I want to execute a method when the user touches a UIImageView.
>> I designed my interface without Interface build
Hello Jonathan,
There are several ways around this.
You can create a transparent UIButton laid out exactly where the image view is
(and with the same autoresizing masks), then wiring up its action / target
where desirable.
Another way is to add a UITapGestureRecognizer on the image view. UIIm
That used to work but I did some changes and I cannot find the cause of the
problem.
Basically, I'm adding an NSOperationInvocation to an NSOperationQueue.
Everything executes correctly. However, it seems that when the NSOperation is
about to exit and it's emptying its autorelease pool, it cras
On Jun 24, 2011, at 3:27 PM, Laurent Daudelin wrote:
> So, is there some way I could get more details from that mistake?
Use NSZombieEnabled so you can find out what the over-released object is. (Look
up the name in the Xcode docs or google it, if you’re not familiar with that
feature.)
—Jens
On Jun 24, 2011, at 15:31, Jens Alfke wrote:
>
> On Jun 24, 2011, at 3:27 PM, Laurent Daudelin wrote:
>
>> So, is there some way I could get more details from that mistake?
>
> Use NSZombieEnabled so you can find out what the over-released object is.
> (Look up the name in the Xcode docs or go
I'm trying to figure out what logic is being used to determine when the
version number is displayed along with the application name and icon in the
Finder Context Menu, 'Open With'. Sometimes for a given application listed
like Word, Xcode, .etc. you will see a version number in parenthesis,
(3.0
On Jun 24, 2011, at 4:38 PM, Laurent Daudelin wrote:
> On Jun 24, 2011, at 15:31, Jens Alfke wrote:
>
>>
>> On Jun 24, 2011, at 3:27 PM, Laurent Daudelin wrote:
>>
>>> So, is there some way I could get more details from that mistake?
>>
>> Use NSZombieEnabled so you can find out what the over
I don’t think it’s the amount of page space, rather the quantity of the
alphabet.
If this is just for an effect for an about screen or soemthing, I’d say your
photoshop idea is the way to go.
Otherwise, I’d suggest the drawing custom app, but even then you’re going to
have issues with making s
Hey list,
I use independentConversationQueueing to make my DO invocations block,
but doing so causes incorrect behavior in the following scenario:
1. ProcessA sends -handleMessage to ProcessB
2. ProcessB's -handleMessage executes, which sends -doSomething to ProcessC
In Step 2, the DO intern
Sure thing Corbin thanks!
On Jun 24, 2011, at 11:48 PM, Corbin Dunn wrote:
> Hi rick,
> It sounds like you are reporting a different issue than what Lee Ann was
> talking about, but the work arounds may also solve your issue too.
>
> If you can reproduce it, ideally package up a test app that
24 matches
Mail list logo