User Stream - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T22:58:31Z http://stackoverflow.com/feeds/user/26980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/193182/programmatically-get-own-phone-number-in-iphone-os 20 Programmatically get own phone number in iPhone OS Stream 2008-10-10T22:03:53Z 2009-11-06T04:16:35Z <p>Is there any way to get own phone number by standard APIs from iPhone SDK?</p> http://stackoverflow.com/questions/1327718/how-to-keep-the-last-tree-item-of-nsoutlineview-in-the-most-bottom-of-a-sidebar/1657185#1657185 0 Answer by Stream for How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar? Stream 2009-11-01T13:36:47Z 2009-11-01T13:50:09Z <p>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:</p> <pre><code>- (CGFloat)outlineView:(NSOutlineView *)ov heightOfRowByItem:(id)item; { if (![item isSpacer]) return [ov rowHeight]; static const CGFloat ADDITIONAL_SPACE = 8.0f; NSUInteger numberOfRootGroups = 2; CGFloat heightOfRows = [ov rowHeight] * ([ov rowForItem:item] + 1) + ADDITIONAL_SPACE * numberOfRootGroups; CGFloat heightOfSidebar = [[ov superview] frame].size.height; return MAX(0.0f, heightOfSidebar - heightOfRows); }</code> </pre> <p>Thanks to everybody for support!</p> http://stackoverflow.com/questions/1327718/how-to-keep-the-last-tree-item-of-nsoutlineview-in-the-most-bottom-of-a-sidebar 5 How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar? Stream 2009-08-25T11:38:18Z 2009-11-01T13:50:09Z <p>I'd like to have the same behavior of special items as it's done in the Things application. I mean <em>Logbook</em> and <em>Trash</em> items in the bottom part of the Sidebar:</p> <p><img src="http://tinyurl.com/lhctza" alt="Logbook and Trash items are in the most bottom" /></p> <p>Please advise any way to implement the same functionality in the sidebar tree.</p> <p>I feel that special ‘spacer’ tree item should be used together with <code>outlineView:heightOfRowByItem:</code> method.</p> <p>However, I can't find how to calculate the total height of all visible items (incl. space between groups).</p> http://stackoverflow.com/questions/246249/programmatically-add-custom-event-in-the-iphone-calendar 1 Programmatically add custom event in the iPhone Calendar Stream 2008-10-29T09:39:47Z 2009-09-07T18:55:17Z <p>Is there any way to add iCal event to the iPhone Calendar from the custom App?</p> http://stackoverflow.com/questions/1058639/how-to-display-indeterminate-nsprogressindicator-in-the-nsoutlineview 2 How to display indeterminate NSProgressIndicator in the NSOutlineView? Stream 2009-06-29T14:29:20Z 2009-08-11T16:37:43Z <p>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:</p> <p><img src="http://www.quicksnapper.com/files/10513/5329281414A48CEBA2FFE0%5Fm.png" alt="Progress Indicator in Outline View" /></p> <p>P. S. Here a source code of using indicator sub-views: <a href="http://snippets.dzone.com/posts/show/7684" rel="nofollow">http://snippets.dzone.com/posts/show/7684</a></p> http://stackoverflow.com/questions/891057/user-friendly-approach-for-network-streaming-playing-and-seeking-of-audio-files 2 User-friendly approach for network streaming, playing and seeking of audio files in Mac OS X 10.5 Stream 2009-05-21T01:44:23Z 2009-08-10T14:43:24Z <p>Please advise a combination of server and client technologies, tools and frameworks to implement a solution that meets the following requirements? <li>File server in the network has a huge library of <i>mp3/aac/aiff/wav</i> music files <li>Desktop cocoa application accesses audio files using URLs: <i>rtmp, http, rtsp+rtp, ftp</i> — how to make a choice? <li>Audio content should be <b>streamed</b> and played with <b>seeking</b> (it's crucial) without downloading the entire file: <i>QuckTime, AudioQueue, AudioFile, AudioStream, CFHTTP, All of them?</i> — how to develop a client?</p> <p>After solid research I've ended up with myriads of options and articles. But it looks like a half of them is quite out-of-date (2001—2005), and the other half is about universal code (pure C) for Mac OS X and iPhone OS. </p> <p>However the main goal here is to write a Desktop music player for Mac OS 10.5.<br /> I cannot believe that all this raw C-coding is just required.<br /> No wrappers? No handy libraries? No components?</p> <p>P. S. Research has resulted in the following combination: <a href="http://omino.com/sw/qt%5Ftools/" rel="nofollow">qt_tools</a> for hinting + <a href="http://dss.macosforge.org/" rel="nofollow">DSS</a> for RTSP streaming + <a href="http://developer.apple.com/documentation/QuickTime/Reference/QTKitFramework/Classes/QTMovie%5FClass/Reference/Reference.html" rel="nofollow">QTMovie</a> for playing back + <a href="http://developer.apple.com/documentation/QuickTime/Reference/QTKitFramework/Classes/QTMovie%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20002391-DontLinkElementID%5F3" rel="nofollow">setCurrentTime:</a> for seeking. This selection requires double-space for storing hinted .MOV-versions of every music file but works anyway.</p> http://stackoverflow.com/questions/1138118/how-to-extract-id-tags-from-mp3-files-in-cocoa 0 How to extract ID tags from MP3 files in Cocoa? Stream 2009-07-16T14:43:11Z 2009-07-18T01:15:34Z <p>Please advise some way to extract MP3 attributes using simple API. Is there any other libraries other than <a href="http://drewfamily.homemail.com.au/Cocoa%5F-%5FID3Tag%5Fframework.html" rel="nofollow">ID3.framework</a>? I found that it is quite out-dated and has memory leaks. Thanks a lot.</p> http://stackoverflow.com/questions/798454/how-to-write-a-simple-ping-method-in-cocoa-objective-c/1004363#1004363 5 Answer by Stream for How to write a simple Ping method in Cocoa/Objective-C Stream 2009-06-16T23:07:56Z 2009-06-17T01:02:14Z <p>The code below seems to be working synchronously:</p> <pre><code>const char *hostName = [@"stackoverflow.com" cStringUsingEncoding:NSASCIIStringEncoding]; SCNetworkConnectionFlags flags = 0; if (SCNetworkCheckReachabilityByName(hostName, &amp;flags) &amp;&amp; flags &gt; 0) { NSLog(@"Host is reachable: %d", flags); } else { NSLog(@"Host is unreachable"); } </code></pre> <p><em>Note: <code>SystemConfiguration.framework</code> is required</em></p> http://stackoverflow.com/questions/754591/what-is-the-best-way-to-implement-syntax-highlighting-of-source-code-in-cocoa 3 What is the best way to implement syntax highlighting of source code in Cocoa? Stream 2009-04-16T03:00:54Z 2009-04-18T19:56:25Z <p>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 (by using NSTextView, for example).</p> <p>Please advise what is the best way to implement such feature in Mac OS X 10.5.</p> <p>There is no need to support auto-completion and other extra-features. Simple formatting by keywords, strings, #includes, and numbers but with cool performance is just OK.</p> <p>Also, it would be great if configuration by languages were supported.</p> <p>Thanks!</p> http://stackoverflow.com/questions/540048/how-to-implement-gradient-button-bar-in-cocoa 0 How to implement gradient button bar in Cocoa Stream 2009-02-12T04:41:06Z 2009-02-12T05:07:21Z <p>Some Cocoa applications (for instance, Mail and Automator) have a special control usually in the bottom of their window:</p> <p><img src="http://img150.imageshack.us/img150/9084/picture2vm3.png" alt="alt text" /></p> <p>Could you share the best practices of making the same action bar with standard images and popup buttons?</p> <p>Thanks.</p> http://stackoverflow.com/questions/219037/how-do-i-make-iphone-springboard-show-two-or-more-icons-for-one-application-bundl 3 How do I make iPhone SpringBoard show two or more icons for one application bundle? Stream 2008-10-20T16:22:45Z 2008-10-21T01:33:01Z <p>It seems like <code>Info.plist</code> file has an ability to declare different roles for the same application bundle through the <code>UIRoleInfo</code> key. SpringBoard can recognize these roles after installing an app and may display separate icons for each application role.</p> <p>For instance, iPhone shows <code>MobileSlideShow.app</code> as 2 different programs: <code>Photos</code> and <code>Camera</code>.</p> <p>Unfortunately, there is no official Apple documentation about the subject at the moment. Would anybody advise how to organize the same behavior in a custom app?</p> <p>This feature is going to be used in the Enterprise product for ad hoc distribution.</p> http://stackoverflow.com/questions/1327718/how-to-keep-the-last-tree-item-of-nsoutlineview-in-the-most-bottom-of-a-sidebar/1327842#1327842 Comment by Stream on How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar? Stream 2009-08-26T11:24:38Z 2009-08-26T11:24:38Z Considering indentation levels. Please take a look at the ‘Music Videos’ item before and after adding new entry to the ‘test’ folder: <a href="http://bit.ly/1U5gkL" rel="nofollow">bit.ly/1U5gkL</a> http://stackoverflow.com/questions/1327718/how-to-keep-the-last-tree-item-of-nsoutlineview-in-the-most-bottom-of-a-sidebar/1327842#1327842 Comment by Stream on How to keep the last tree item of NSOutlineView in the most bottom of a Sidebar? Stream 2009-08-25T14:55:18Z 2009-08-25T14:55:18Z However, you should also manage not only scrolling states and 2 views but indentation level, next responders, some hot-keys etc. Question is still open :) http://stackoverflow.com/questions/1058639/how-to-display-indeterminate-nsprogressindicator-in-the-nsoutlineview/1058818#1058818 Comment by Stream on How to display indeterminate NSProgressIndicator in the NSOutlineView? Stream 2009-06-30T14:14:22Z 2009-06-30T14:14:22Z I've meant that your solution with indicator as outline's sub-view is completely OK but it can be slightly improved by subclassing cells as Vienna does instead of using extra-columns. http://stackoverflow.com/questions/1058639/how-to-display-indeterminate-nsprogressindicator-in-the-nsoutlineview/1058818#1058818 Comment by Stream on How to display indeterminate NSProgressIndicator in the NSOutlineView? Stream 2009-06-30T14:10:29Z 2009-06-30T14:10:29Z Sorry for being pain in the neck but extra-column is not very convenient solution :) I like an implementation used in Mail very much, and Vienna app mentioned in this thread uses viewControl method of the cell to achieve the same results. I'll try to go this way. http://stackoverflow.com/questions/1058639/how-to-display-indeterminate-nsprogressindicator-in-the-nsoutlineview/1058818#1058818 Comment by Stream on How to display indeterminate NSProgressIndicator in the NSOutlineView? Stream 2009-06-29T15:44:55Z 2009-06-29T15:44:55Z It's quite a good solution but sometimes cell text can be trimmed by ellipsis. So the cell should know about ‘external’ indicator to reduce a width of the text: <a href="http://tinyurl.com/mkmfat" rel="nofollow">tinyurl.com/mkmfat</a> http://stackoverflow.com/questions/891057/user-friendly-approach-for-network-streaming-playing-and-seeking-of-audio-files/891075#891075 Comment by Stream on User-friendly approach for network streaming, playing and seeking of audio files in Mac OS X 10.5 Stream 2009-05-22T10:51:55Z 2009-05-22T10:51:55Z Yes, we've selected exactly this server solution to stream music tracks. Most likely there is no way to stream and seek audio without wrapping it into hinted movies. http://stackoverflow.com/questions/891057/user-friendly-approach-for-network-streaming-playing-and-seeking-of-audio-files/892684#892684 Comment by Stream on User-friendly approach for network streaming, playing and seeking of audio files in Mac OS X 10.5 Stream 2009-05-21T16:12:00Z 2009-05-21T16:12:00Z Thanks for such a useful solution. Unfortunately, it looks like there is no ability to stream MP3 files without decompressing them into video format before. In this case, we still need to convert all content before streaming. http://stackoverflow.com/questions/891057/user-friendly-approach-for-network-streaming-playing-and-seeking-of-audio-files/891075#891075 Comment by Stream on User-friendly approach for network streaming, playing and seeking of audio files in Mac OS X 10.5 Stream 2009-05-21T08:59:51Z 2009-05-21T08:59:51Z Closer, but we need an extra-lightweight client (let's imagine if a person listens to an audio-book). So downloading of the entire audio file is not a case. Any ideas about server-side support are highly appreciated. Mac OS X Server looks promising, but it's quite expensive. We must be sure it allows to stream pure audio files. Thank you very much. http://stackoverflow.com/questions/891057/user-friendly-approach-for-network-streaming-playing-and-seeking-of-audio-files/891150#891150 Comment by Stream on User-friendly approach for network streaming, playing and seeking of audio files in Mac OS X 10.5 Stream 2009-05-21T08:52:16Z 2009-05-21T08:52:16Z Sure I did :) And it seems that this method requires back-end support by the hint tracks from the server side. But as I mentioned in the question, we have about 1 TB (!) of content. It's just impossible to handle every one track to wrap in into .MOV-file. Or did I miss something? We need kind of ‘pure’ audio streaming. Thank you. http://stackoverflow.com/questions/754591/what-is-the-best-way-to-implement-syntax-highlighting-of-source-code-in-cocoa/758404#758404 Comment by Stream on What is the best way to implement syntax highlighting of source code in Cocoa? Stream 2009-04-17T01:48:20Z 2009-04-17T01:48:20Z Thank you guys. It definitely looks like the right answer. I'll explore Uli's component carefully, but I'd like to leave this question unanswered for some days. Possibly, somebody will have come up with something new by this time. http://stackoverflow.com/questions/754591/what-is-the-best-way-to-implement-syntax-highlighting-of-source-code-in-cocoa/755142#755142 Comment by Stream on What is the best way to implement syntax highlighting of source code in Cocoa? Stream 2009-04-16T08:06:34Z 2009-04-16T08:06:34Z Thank you Matthew. Sorry, but I forgot to include one more requirement. Thе source code should be editable (placed in the NSTextView, for example). Is it possible to use Pygments to incorporate highlighting into NSTextView to achieve this goal? http://stackoverflow.com/questions/540048/how-to-implement-gradient-button-bar-in-cocoa/540113#540113 Comment by Stream on How to implement gradient button bar in Cocoa Stream 2009-02-12T14:53:18Z 2009-02-12T14:53:18Z This is exactly what I need! http://stackoverflow.com/questions/193182/programmatically-get-own-phone-number-in-iphone-os/515112#515112 Comment by Stream on Programmatically get own phone number in iPhone OS Stream 2009-02-10T17:17:51Z 2009-02-10T17:17:51Z Yes, definitely this feature should be used only as an addition to the contact picker. Sometimes, it also can be useful to scan an AddressBook for the phone number with a suffix retrieved from the Defaults by SBFormattedPhoneNumber key. http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156098#156098 Comment by Stream on What are best practices that you use when writing Objective-C and Cocoa? Stream 2009-01-26T00:03:34Z 2009-01-26T00:03:34Z You've made my day ) Thanks! http://stackoverflow.com/questions/246249/programmatically-add-custom-event-in-the-iphone-calendar/246314#246314 Comment by Stream on Programmatically add custom event in the iPhone Calendar Stream 2009-01-25T19:02:07Z 2009-01-25T19:02:07Z <a href="https://developer.apple.com/bugreporter/" rel="nofollow">developer.apple.com/bugreporter</a> is the best answer )