|
Re: XPC Question
This thread would be incomplete without at least a nostalgic mention of Distributed Objects
This thread would be incomplete without at least a nostalgic mention of Distributed Objects
|
By
Ben Kennedy
·
#704
·
|
|
Re: XPC Question
Not as far as I know.
In general, it’s a bad idea to use this sort of “hidden” RPC across a network. Networking is fundamentally unlike local function calls, and making a network call look
Not as far as I know.
In general, it’s a bad idea to use this sort of “hidden” RPC across a network. Networking is fundamentally unlike local function calls, and making a network call look
|
By
Jens Alfke
·
#703
·
|
|
Re: iOS: TableView inside ScrollView
That's simply a table view with static sections, and each section has a set number of rows. The Choose a Network section has variable number of rows, added programmatically. You don't need to add
That's simply a table view with static sections, and each section has a set number of rows. The Choose a Network section has variable number of rows, added programmatically. You don't need to add
|
By
Steve Mills
·
#702
·
|
|
XPC Question
Can you do XPC RPC over an IP connection? Or, in other words… Can you do XPC between two computers?
Thanks,
Sandor
Can you do XPC RPC over an IP connection? Or, in other words… Can you do XPC between two computers?
Thanks,
Sandor
|
By
Sandor Szatmari
·
#701
·
|
|
iOS: TableView inside ScrollView
iOS 11, Xcode 10
I have a view with an UIScrollView, which is bound on all 4 sides to the save area.
This ScrollView contains:
UILabel
UITableView
UILabel
The problem: if the TableView does
iOS 11, Xcode 10
I have a view with an UIScrollView, which is bound on all 4 sides to the save area.
This ScrollView contains:
UILabel
UITableView
UILabel
The problem: if the TableView does
|
By
Gerriet M. Denkmann
·
#700
·
|
|
Re: Window Position and Size Restored
Got it thanks, I knew there was a property for it somewhere, but was looking in the wrong pane.
Got it thanks, I knew there was a property for it somewhere, but was looking in the wrong pane.
|
By
Dave
·
#699
·
|
|
Re: Window Position and Size Restored
Try unchecking the "Restorable" checkbox in IB. I don't know why you aren't able to manually "override" this.
--Andy
Try unchecking the "Restorable" checkbox in IB. I don't know why you aren't able to manually "override" this.
--Andy
|
By
Andy Lee
·
#698
·
|
|
Re: Window Position and Size Restored
See NSWindow.frameAutosaveName. That should take care of it for you.
- Jon
See NSWindow.frameAutosaveName. That should take care of it for you.
- Jon
|
By
Jon Gotow
·
#697
·
|
|
Re: Maintaining Aspect Ration of a Window
Thanks a lot, I think this should do the trick!
Thanks a lot, I think this should do the trick!
|
By
Dave
·
#696
·
|
|
Window Position and Size Restored
Hi,
Mac, Manual Layout.
I’m trying to reset the Window Position Size each time my App is run. When I run it under Debug, the Window Position keeps getting restored (AFAICT), I’ve subclassed
Hi,
Mac, Manual Layout.
I’m trying to reset the Window Position Size each time my App is run. When I run it under Debug, the Window Position keeps getting restored (AFAICT), I’ve subclassed
|
By
Dave
·
#695
·
|
|
Manual Layout on Mac
Hi,
I’m using Manual Layout on the Mac and I’ve also “isFippied" = YES on all views.
In Interface Builder, I have the following Window View Layout:
Window.view is set to
Hi,
I’m using Manual Layout on the Mac and I’ve also “isFippied" = YES on all views.
In Interface Builder, I have the following Window View Layout:
Window.view is set to
|
By
Dave
·
#694
·
|
|
Re: Maintaining Aspect Ration of a Window
Try -aspectRatio
https://developer.apple.com/documentation/appkit/nswindow/1419507-aspectratio
Does that do what you want?
Sandor
Try -aspectRatio
https://developer.apple.com/documentation/appkit/nswindow/1419507-aspectratio
Does that do what you want?
Sandor
|
By
Sandor Szatmari
·
#693
·
|
|
Re: Maintaining Aspect Ration of a Window
Thanks a lot, I was looking for the wrong method!
Thanks a lot, I was looking for the wrong method!
|
By
Dave
·
#692
·
|
|
Re: Maintaining Aspect Ration of a Window
Yes, there is a window delegate method. Given a proposed window size, you return the actual window size you would like to constrain
Yes, there is a window delegate method. Given a proposed window size, you return the actual window size you would like to constrain
|
By
Andy Lee
·
#691
·
|
|
Maintaining Aspect Ration of a Window
Mac, Manual Layout of Views.
Hi All,
Is there anyway to ensure that when a window resizes on the Mac it maintains its aspect ratio? I’m doing manual layout as for this project Auto Layout isn’t
Mac, Manual Layout of Views.
Hi All,
Is there anyway to ensure that when a window resizes on the Mac it maintains its aspect ratio? I’m doing manual layout as for this project Auto Layout isn’t
|
By
Dave
·
#690
·
|
|
Re: Document types not working
Turns out that the OS is getting confused because there is another app that declares UTIs for files with the extensions my app can open. I've tried moving the UTIs from exported to imported, since my
Turns out that the OS is getting confused because there is another app that declares UTIs for files with the extensions my app can open. I've tried moving the UTIs from exported to imported, since my
|
By
Steve Mills
·
#689
·
|
|
Document types not working
I'm sure I had this working earlier in development of the macOS version of my app, but custom file types are no longer openable by my app. I've declared exported UTIs for cbr and cbz extensions and
I'm sure I had this working earlier in development of the macOS version of my app, but custom file types are no longer openable by my app. I've declared exported UTIs for cbr and cbz extensions and
|
By
Steve Mills
·
#688
·
|
|
Re: Show splash screen before finished launching?
I come here looking for a simple solution, and you try to make me THINK? That’s hardly fair. :-)
I managed to move some work onto a different thread, and fix a place where my main thread was
I come here looking for a simple solution, and you try to make me THINK? That’s hardly fair. :-)
I managed to move some work onto a different thread, and fix a place where my main thread was
|
By
James Walker
·
#687
·
|
|
Re: Show splash screen before finished launching?
Coming at this from the other side, why does it take enough seconds to get from willFinishLaunching to didFinishLaunching that you care? If you can reduce that time a bit, maybe you don’t have to
Coming at this from the other side, why does it take enough seconds to get from willFinishLaunching to didFinishLaunching that you care? If you can reduce that time a bit, maybe you don’t have to
|
By
Quincey Morris
·
#686
·
|
|
Re: Show splash screen before finished launching?
I wondered about that myself, and logged out the values of [NSRunloop currentRunLoop] and [NSRunloop mainRunLoop]. They showed the same non-nil value.
I wondered about that myself, and logged out the values of [NSRunloop currentRunLoop] and [NSRunloop mainRunLoop]. They showed the same non-nil value.
|
By
James Walker
·
#685
·
|