• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
cocoapods: Problem with loading nib for a NSWindowController
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

cocoapods: Problem with loading nib for a NSWindowController


  • Subject: cocoapods: Problem with loading nib for a NSWindowController
  • From: Colas <email@hidden>
  • Date: Fri, 18 Apr 2014 15:32:44 +0200

Dear cocoa-dev,

I have troubles including resource in my pod.
I wanted to know if you have some advice to give.

Here is my situation

1) I have a pod with a .xib file (I wrote the pod)

Here is the podspec :


Pod::Spec.new do |s|

  s.name         = "MyCBD_BSManagedDocument"

  s.requires_arc = true
  s.osx.platform   = :osx, '10.7'

  s.subspec 'MyCBD_BSManagedDocument' do |ss|
    ss.source_files = 'Classes/MyCBD_BSManagedDocument/**/*.{h,m}'
  end

  s.subspec 'Auxiliary classes' do |ss|
    ss.subspec 'MyCBDLockManager' do |sss|
      sss.source_files = 'Classes/Auxiliary classes/MyCBDLockManager/**/*.{h,m}'
      sss.resource_bundle = {'MyCBDLockManager' => 'Classes/Auxiliary classes/MyCBDLockManager/MyCBDLockManager.xib'}
    end

    ss.subspec 'MyCBDSafeguardManager' do |sss|
      sss.source_files = 'Classes/Auxiliary classes/MyCBDSafeguardManager/**/*.{h,m}'
    end
  end

  s.resource  = "Classes/help_MyCBD_BSManagedDocument.rtf"

  s.dependency 'BSManagedDocument', '~>0.3.2'
  s.dependency 'CBDFoundationToolKit', '~>0.0.6'

end



2) In this pod, I have a subclass of NSWindowController

There is this method

- (id)initForDocument:(MyCBD_BSManagedDocument *)document
{
    self = [super initWithWindowNibName:@"MyCBDLockManager"] ;

    if (self)
    {
        self.theDocument = document ;
        [self setMinimalDurationTo:defaultMinimalDuration] ;
    }
    return self;
}



3) My problem
—> in my toy-project that uses this pod, I don’t have any problem
—> in my real project, I have an error :
-[MyCBDLockManager loadWindow]: failed to load window nib file 'MyCBDLockManager’.




Thanks,
Colas
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: cocoapods: Problem with loading nib for a NSWindowController
      • From: Quincey Morris <email@hidden>
  • Prev by Date: Re: Layout-triggered animation
  • Next by Date: Re: cocoapods: Problem with loading nib for a NSWindowController
  • Previous by thread: Re: NSComboBox and sorted list
  • Next by thread: Re: cocoapods: Problem with loading nib for a NSWindowController
  • Index(es):
    • Date
    • Thread