我的- (void)swipeGesture:(UIPanGestureRecognizer *)gesture {
if (gesture.state == UIGestureRecognizerStateBegan) {
NSInteger direction;
// find swipe direction
CGPoint velocity = [gesture velocityInView:self];
if (velocity.x > 0) {
// towards right - hide menu view
direction = ABMenuUpdateHideAction;
}
else {
// towards left - show menu view
direction = ABMenuUpdateShowAction;
}
UITableView* tableView = (UITableView*)self.superview.superview;
CGPoint swipeLocation = [gesture locationInView:tableView];
NSIndexPath *swipedIndexPath = [tableView indexPathForRowAtPoint:swipeLocation];
[tableView selectRowAtIndexPath:swipedIndexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
[self updateMenuView:direction animated:YES];
}
}
中有三个excel和一个powerpoint文件。我的目标是将它们编译到exe中,因此该工具可以在任何地方使用,而不依赖于我们的LAN文件夹。
我已经尝试将它们放入解决方案资源管理器中的Resources-Folder中,但之后使用它们我有一个类似WebApiAccessService.<GetStudentKey>d__14a.MoveNext()
的路径。第二个想法是将它们作为资源添加到P Windows Forms Application
中,然后通过(Z://yourexelfile.xlsx)
访问它们,但这不起作用,因为我的函数需要一个“String”(在本例中是一个路径)构造函数。我试过System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames,但这并没有像MyApp.Resources.resources那样给我所需的路径。如果有人能帮助我的话会很棒。