On 16.07.2012, at 04:30, Graham Cox wrote:
> If I create a category on a standard framework class as part of another
> framework, and I use +[NSBundle bundleForClass:] to load an image resource
> for use by that category, does that work, i.e. does it load the bundle of the
> framework containing
On Jul 20, 2012, at 9:36 PM, Quincey Morris wrote:
> On Jul 20, 2012, at 19:03 , Keary Suska wrote:
>
>> In an NSTableView I am providing custom cells via
>> tableView:dataCellForTableColumn:row:, based on values represented in other
>> columns. The cell is usually determined when a value is sp
hi.
i just started a new ios project where i want to download images using
NSimage's initwithcontentsofURL: method.
now i also want to write those images to permanent storage, but how do i do
that? as far as i can tell, NSImage has no method for writing images to disk.
is there something i mis
On Jul 21, 2012, at 10:03 AM, H. Miersch wrote:
> i just started a new ios project where i want to download images using
> NSimage's initwithcontentsofURL: method.
> now i also want to write those images to permanent storage, but how do i do
> that?
You could always download the data given th
On 21. Jul 2012, at 17:37, Nick Zitzmann wrote:
>
> On Jul 21, 2012, at 10:03 AM, H. Miersch wrote:
>
>> i just started a new ios project where i want to download images using
>> NSimage's initwithcontentsofURL: method.
>> now i also want to write those images to permanent storage, but how do
>> On Jul 20, 2012, at 19:03 , Keary Suska wrote:
>>
>>> In an NSTableView I am providing custom cells via
>>> tableView:dataCellForTableColumn:row:, based on values represented in other
>>> columns. The cell is usually determined when a value is specified via
>>> NSPopupButtonCells in two othe
NSImage is for OS X. You need to use UIImage on iOS. One difference is that
UIImage doesn't have an -initWithContentsOfURL: method.
Note that UIImage conforms to NSCoding, so once you've loaded a UIImage through
whichever means you prefer (NSData, the URL loading system, etc.) you can
archive
On Jul 21, 2012, at 10:41 AM, H. Miersch wrote:
>
> On 21. Jul 2012, at 17:37, Nick Zitzmann wrote:
>
>>
>> On Jul 21, 2012, at 10:03 AM, H. Miersch wrote:
>>
>>> i just started a new ios project where i want to download images using
>>> NSimage's initwithcontentsofURL: method.
>>> now i al
Hi, the header-file documentation for the suggested delegate method tells the
following:
---
1. windowWillResize:toSize: Tells the delegate that the window is being
resized (whether by the user or through one of the setFrame... methods other
than setFrame:display:).
2. The frameSi
On Jul 18, 2012, at 4:46 PM, William Squires wrote:
> For example, an effect could be called "fireball" and do 1d6 HP to a player
> caught in the blast radius. My 'effect' class has an @property of type
> NSMutableArray (which holds 'codons' in NSStrings) of the form:
>
>
>
> and the parser
On 22/07/2012, at 2:58 AM, Conrad Shultz wrote:
> Note that UIImage conforms to NSCoding, so once you've loaded a UIImage
> through whichever means you prefer (NSData, the URL loading system, etc.) you
> can archive the image to an NSData (and of course unarchive) in the usual
> manner.
UII
I'm creating an index for a table that we're sorting. Sorting using localized
compare will properly compare ç with c. But then my index shows both c and ç.
Given that I'm simply taking the first character of the string, how can I get
the letter "C" when the string starts with "Ç"?
___
On Jul 21, 2012, at 6:26 PM, Alex Kac wrote:
> I'm creating an index for a table that we're sorting. Sorting using localized
> compare will properly compare ç with c. But then my index shows both c and ç.
> Given that I'm simply taking the first character of the string, how can I get
> the let
Yup. That's what I was looking for. The word "Folding" just didn't register
with me as what I was looking for as I searched the docs. Thanks!
On Jul 21, 2012, at 8:57 PM, David Duncan wrote:
> On Jul 21, 2012, at 6:26 PM, Alex Kac wrote:
>
>> I'm creating an index for a table that we're sort
I just saw this somewhere today and now can't find it. There's a place (in
the Apple Provisioning Portal somewhere maybe) where you can specify a
string that will be presented to the user (in place of the default one)
when the app asks for permission to use push notifications.
Anybody know where
15 matches
Mail list logo