Visual F# Power Tools 简介
Auto-generating XmlDoc (via
F# XmlDoc extension)Formatting document / Formatting selection (via
Fantomas extension)Navigation bar (see
this article)Highlight re...
分类:
其他好文 时间:
2014-07-19 23:18:17
阅读次数:
299
即将跳转到页面A,在页面A中有一个listbox,在跳转的时候,接收参数,自动选中listbox中的某项 /// /// 接收参数,定位当前选中项 /// protected override void OnNavigatedTo(System.Windows.Navigation.Navigati...
分类:
其他好文 时间:
2014-07-18 10:06:44
阅读次数:
197
如果你想在网页中实现灵活的固定导航功能,那么 Smart Fixed Navigation 这个 JavaScript 脚本可以帮助轻松实现一个固定的导航,让用户在访问你的网站的时候可以随时使用菜单。它比全宽度的固定导航更小,并一个聪明UX的解决方案来取代回到顶部按钮功能。
分类:
编程语言 时间:
2014-07-16 20:05:23
阅读次数:
186
考查代码能力的题目。也可以说是算法水题,呵呵。
推荐新手练习代码能力。
要增加难度就使用纯C实现一下stack,那么就有点难度了,可以使用数组模拟环形栈。做多了,我就直接使用STL了。
#include
#include
#include
#include
using namespace std;
int main()
{
stack forward;
stack ba...
分类:
Web程序 时间:
2014-07-14 13:44:44
阅读次数:
149
AudioServices
Jump to:
navigation,
search
AudioServices is a group of C functions in
AudioToolbox for playing short (≤30 seconds) sounds.
Predefined sounds
There are some predefined system s...
分类:
移动开发 时间:
2014-07-10 17:29:49
阅读次数:
396
这次的学习是在Navigation-based Application模板中,用RootViewController class设置操作方法,使用UITableView的属性值。在导航控制器控件为程序的窗口添加上导航条,可构建多个视图连接导航按钮。这次的练习中,我在Navigation contro...
分类:
其他好文 时间:
2014-07-10 15:00:15
阅读次数:
291
今天在测试过程中,出现了这样一个bug,分别有两种情景:
(前提是:app是基于UINavigationController构建的)
1、从Controller-A中push进来B。在B中点击返回,返回的界面为黑色一片。再做返回操作就crash了。
2、从Controller-A中push进入B,此时B中tableview出现错位现象,tableview被navigationbar覆盖了...
分类:
其他好文 时间:
2014-07-08 10:33:48
阅读次数:
218
2014-07-05 17:11:20.594 SevenStars[2185:60b] nested push animation can result in corrupted navigation bar
2014-07-05 17:11:21.005 SevenStars[2185:60b] Finishing up a navigation transition in an unexp...
分类:
其他好文 时间:
2014-07-06 12:31:20
阅读次数:
198
iOS7 中的UIViewControllers设置了automaticallyAdjustsScrollViewInsets。如果是YES,scrollview会根据status bar, navigation bar以及tool bar或者tab bar的高度自动调整。可以通过在storyboard的右侧进行设置,在Attributes Inspector中,不勾选“Adjust Scroll...
分类:
移动开发 时间:
2014-07-04 08:00:39
阅读次数:
539
如果出现:
nested push animation can result in corrupted navigation bar
Finishing up a navigation transition in an unexpected state. Navigation Bar subview tree might get corrupted.
一般这种情况是在自定义的t...
分类:
其他好文 时间:
2014-07-04 00:36:55
阅读次数:
223