>> Try overriding NSCell - drawWithFrame:inView:
>> IIRC this is called before - drawInteriorWithFrame:InView:
>> The default implementation of - drawWithFrame:inView: is perhaps the source
>> of your unwanted drawing.
>> Regards
>> Jonathan Mitchell
>Thanks Jonathan for your reply. I've tried
I have a project where something like a 'put your face in someone elses
head' "game" is wanted.
So I did a UIScrollView in IB and in code I attach the UIImageView of
the picture. That works fine. With multitouch enabled zooming works
fine, so does positioning of the enlarged picture.
Then I''ve p
I have a customer request to sync application preferences between Macs and
iPhone. The user may not have a MobileMe account, so Sync Services is not an
option (or is it?). The user data would be stored in a plist on both
platforms and I'm trying to find the best way to keep those in sync. Any and
a
Hi all,
This seems like a lame question to be fair. I would like to be able
to access the snowflake symbol from the 'Zapf Dingbats' font and
simply draw it into a custom control applying attributes like font
colour to it.
Charecter details are:
Name: 'SNOWFLAKE'
Unicode: 2744
UTF8: E2 9
On Nov 24, 2010, at 9:28 AM, Lorenzo Thurman wrote:
> I have a customer request to sync application preferences between Macs and
> iPhone. The user may not have a MobileMe account, so Sync Services is not an
> option (or is it?).
Sadly, it isn't. There is no SyncServices framework on iOS.
> The
On Nov 24, 2010, at 10:46 AM, Stephen Blinkhorn wrote:
> Hi all,
>
> This seems like a lame question to be fair. I would like to be able to
> access the snowflake symbol from the 'Zapf Dingbats' font and simply draw it
> into a custom control applying attributes like font colour to it.
>
> C
On Nov 24, 2010, at 12:48 PM, Nick Zitzmann wrote:
> On Nov 24, 2010, at 9:28 AM, Lorenzo Thurman wrote:
>
>> I have a customer request to sync application preferences between Macs and
>> iPhone. The user may not have a MobileMe account, so Sync Services is not an
>> option (or is it?).
>
> Sadl
On 24 Nov 2010, at 12:02, Nick Zitzmann wrote:
On Nov 24, 2010, at 10:46 AM, Stephen Blinkhorn wrote:
Hi all,
This seems like a lame question to be fair. I would like to be
able to access the snowflake symbol from the 'Zapf Dingbats' font
and simply draw it into a custom control applyi
You can also do:
NSString * snowflake = @"\u2744";
Cheers,
Dave
On Nov 24, 2010, at 10:11 AM, Stephen Blinkhorn wrote:
>
> On 24 Nov 2010, at 12:02, Nick Zitzmann wrote:
>
>>
>> On Nov 24, 2010, at 10:46 AM, Stephen Blinkhorn wrote:
>>
>>> Hi all,
>>>
>>> This seems like a lame question t
Beware the user that has removed all fonts that contain a snowflake... Maybe it
would be better to "roll your own".
_murat
On Nov 24, 2010, at 10:14 AM, Dave DeLong wrote:
> You can also do:
>
> NSString * snowflake = @"\u2744";
>
> Cheers,
>
> Dave
>
> On Nov 24, 2010, at 10:11 AM, Stephen
On 2010 Nov 24, at 01:08, Josh Yu wrote:
> Problem solved.
>
> NEVER return float to heightOfRow - this will mess the whole table up.
> Not sure if it's a cocoa bug - but return integer at all times.
I presume you're speaking of the value returned by the delegate method
-tableView:heightOfRow:
On 24 Nov 2010, at 12:56, Murat Konar wrote:
Beware the user that has removed all fonts that contain a snowflake...
Yeah, I did wonder about such a thing. But why would anyone do a
thing like that!?
Stephen
_murat
On Nov 24, 2010, at 10:14 AM, Dave DeLong wrote:
You can also do:
N
On Nov 24, 2010 11:48am, Nick Zitzmann wrote:
On Nov 24, 2010, at 9:28 AM, Lorenzo Thurman wrote:
> I have a customer request to sync application preferences between Macs
and
> iPhone. The user may not have a MobileMe account, so Sync Services is
not an
> option (or is it?).
On Nov 24, 2010, at 12:35 PM, Stephen Blinkhorn wrote:
>> Beware the user that has removed all fonts that contain a snowflake...
>
> Yeah, I did wonder about such a thing. But why would anyone do a thing like
> that!?
I wouldn't worry about it in this case. Zapf Dingbats is a system font
(in
On Wed, Nov 24, 2010 at 11:35 AM, Stephen Blinkhorn
wrote:
> On 24 Nov 2010, at 12:56, Murat Konar wrote:
>
>> Beware the user that has removed all fonts that contain a snowflake...
>
> Yeah, I did wonder about such a thing. But why would anyone do a thing like
> that!?
Does it matter?
If you n
Hello,
wondering if there is a way to detect whether the location services are enabled
for the app. I am not after the global enabledness, but after the enabledness
of my app.
I imagine the OS stores this information somewhere, but can we get (read)
access to that programmatically?
Thanks,
R
On Nov 24, 2010, at 2:31 PM, Rainer Standke wrote:
> Hello,
>
> wondering if there is a way to detect whether the location services are
> enabled for the app. I am not after the global enabledness, but after the
> enabledness of my app.
>
> I imagine the OS stores this information somewhere,
On Nov 24, 2010, at 1:58 PM, Kyle Sluder wrote:
> On Wed, Nov 24, 2010 at 11:35 AM, Stephen Blinkhorn
> wrote:
>> On 24 Nov 2010, at 12:56, Murat Konar wrote:
>>
>>> Beware the user that has removed all fonts that contain a snowflake...
>>
>> Yeah, I did wonder about such a thing. But why wou
HI
my requirement is simple I need a nscell to have image, text and button to
be used in an outline view .I had a look at the imageandtext cell example ,
how to add an button to it ? any idea about how to convert image and text
cell
to add button ? any suggestion would be really help f
Try googling NSButtonCells, or look them up in the documentation.
On Nov 24, 2010, at 7:08 PM, Rajendran P wrote:
> HI
>my requirement is simple I need a nscell to have image, text and button to
> be used in an outline view .I had a look at the imageandtext cell example ,
> how to add an
On 24 nov 2010, at 16.08, Rajendran P wrote:
>my requirement is simple I need a nscell to have image, text and button to
> be used in an outline view .I had a look at the imageandtext cell example ,
> how to add an button to it ? any idea about how to convert image and text
> cell
> to
Thanks Glenn,
I was afraid so.
Rainer
On Nov 24, 2010, at 12:50 , glenn andreas wrote:
>
> On Nov 24, 2010, at 2:31 PM, Rainer Standke wrote:
>
>> Hello,
>>
>> wondering if there is a way to detect whether the location services are
>> enabled for the app. I am not after the global enabledn
HI
Thank you , the Photosearch sample solved my problem .
P.Rajendran or Raju
(for further details contact
me )
From: Joar Wingfors
To: Rajendran P
Cc: cocoa-dev@lists.apple.com
Sent: Wed, 24 November, 2010 8:12:47 PM
Subject: R
23 matches
Mail list logo