0
votes
1answer
413 views
How to implement gradient button bar in Cocoa
Some Cocoa applications (for instance, Mail and Automator) have a special control usually in the bottom of their window:
…
3
votes
4answers
489 views
What is the best way to implement syntax highlighting of source code in Cocoa?
I'm working on Cocoa Application that should be able to analyze and highlight a source code written in such languages as Objective-C, SQL, JavaScript, Python etc. The text should be editable too (b …
2
votes
3answers
237 views
User-friendly approach for network streaming, playing and seeking of audio files in Mac OS X 10.5
Please advise a combination of server and client technologies, tools and frameworks to implement a solution that meets the following requirements?
File server in the network has a huge library …
2
votes
3answers
224 views
How to display indeterminate NSProgressIndicator in the NSOutlineView?
I need to display a progress of loading of item's children. Please advise how to implement a progress indicator like it's done in Mail application:
…
0
votes
1answer
317 views
How to extract ID tags from MP3 files in Cocoa?
Please advise some way to extract MP3 attributes using simple API.
Is there any other libraries other than …
5
votes
2answers
89 views
How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar?
I'd like to have the same behavior of special items as it's done in the Things application. I mean Logbook and Trash items in the bottom part of the Sidebar:
…
5
votes
How to write a simple Ping method in Cocoa/Objective-C
The code below seems to be working synchronously:
const char *hostName = [@"stackoverflow.com"
cStringUsingEncoding:NSASCIIStringEncoding];
SCNetworkConnecti …
0
votes
How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar?
I've decided to hardcode the solution by adding 8 pixels of height for every root item in group style.
So, the code looks like this:
- (CGFloat)outlineView:(NSOutlineView *)ov heigh …
